题解 | unodered_set #提取不重复的整数#

提取不重复的整数

https://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1

#include <iostream>
#include<algorithm>
#include<unordered_set>
using namespace std;

int main() {
    int nums;
    cin>>nums;
    string str=to_string(nums);
    unordered_set<char>set;
    reverse(str.begin(),str.end());
    string res="";
    for(char c: str){
        if(set.count(c)!=1){
            res+=c;
            set.insert(c);
        }
    }
    cout<<stoi(res)<<endl;
    return 0;

    
    
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务