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

提取不重复的整数

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

#include<iostream>
#include<set>
using namespace std;
int main()
{
    int n;
    while(cin>>n)
    {
        set<int>se;
        int s=n/10;
        int y=n%10;
        int res=0;
        while(s)
        {
            if(se.count(y)==0)
            {
                se.insert(y);
                res=res*10;
                res+=y;
            }
            y=s%10;
            s/=10;
        }
        if(se.count(y)==0)
            {
                se.insert(y);
                res=res*10;
                res+=y;
            }
        cout<<res<<endl;
    }
    return 0;
}
全部评论

相关推荐

11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
牛客101244697号:这个衣服和发型不去投偶像练习生?
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务