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

提取不重复的整数

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

使用unordered_set来去除重复的整数

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

int main() {
    int input = 0;
    cin >> input;
    unordered_set<int> hash;
    int res = 0;
    while(input){
        int backend = input % 10;
        if(hash.find(backend) == hash.end()){
            res *= 10;
            res += backend;
            hash.insert(backend);       
        }
        input /= 10;
    }
    cout << res << endl;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务