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

提取不重复的整数

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;
}
全部评论

相关推荐

球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
11-18 09:44
Java
小白也想要offer:简历别放洋屁,搞不还还放错了,当然你投外企除外,以上纯属个人观点
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务