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

提取不重复的整数

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

#include<bits/stdc++.h>
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;
}

全部评论

相关推荐

码农索隆:力扣的题目还挺贴近现实
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-11 12:10
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务