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

提取不重复的整数

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

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

int main(){
    string s;
    cin >> s;
    set<int> set;
  //从后往前,使用set去重,插入失败时不打印。
    for(int i = s.size()-1; i >= 0; i--){
        if(set.insert(s[i] - '0').second){
            cout << s[i];
        }
    }
    cout << endl;
    return 0;
}
全部评论
打卡一下
点赞 回复 分享
发布于 2022-10-24 13:44 陕西

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
斑驳不同:还为啥暴躁 假的不骂你骂谁啊
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务