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

提取不重复的整数

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

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

int main() {
    int n;
    cin >> n;
    string str = to_string(n);
    reverse(str.begin(), str.end());
    unordered_set<char> set;
    string res;
    for (auto c : str)
    {
        if (set.find(c) == set.end())
        {
            res += c;
            set.insert(c);
        }
    }
    cout << stoi(res) << endl;
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务