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

提取不重复的整数

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

import java.util.*;
public class Main{

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        while (num % 10 == 0) {
            num = sc.nextInt();
        }
        String str = String.valueOf(num);
        char[] chs = str.toCharArray();
        Set<Character> cset = new TreeSet<>();
        List<Character> cl = new ArrayList<>();
        for (int i = chs.length - 1; i >= 0; i--) {
            if (cset.add(chs[i])) { //不重复,true,就是里面还没有
                cl.add(chs[i]);
            }
        }
        for (Character ch : cl) {
            System.out.print(ch);
        }
    }

}

全部评论

相关推荐

用微笑面对困难:不是你千万别小看这家公司,他们的预估市值成倍上涨,三次在报告看见这个公司了,总之如果是给股权的话可以试试,未来没准真能发家致富哈哈哈哈
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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