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

提取不重复的整数

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")

全部评论

相关推荐

Pandaileee:校友加油我现在也只有一个保底太难了
点赞 评论 收藏
分享
09-29 11:19
门头沟学院 Java
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
听说改名就会有offer:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务