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

提取不重复的整数

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

#include <iostream>
#include <bits/stdc++.h>
using namespace std;


int main(){
    int n;
    cin >> n;
    string str = to_string(n);
    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; 
}
全部评论

相关推荐

10-28 14:42
门头沟学院 Java
watermelon1124:因为嵌入式炸了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务