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

提取不重复的整数

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

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {

        Scanner in = new Scanner(System.in);
//        String line1 = in.nextLine();
        String line = in.nextLine();
        char[] chars = line.toCharArray();
        //set 不重复集合
        Set<Character> set = new LinkedHashSet<>();

        for (int i = chars.length - 1; i >= 0; i--) {

            if (!(set.contains(chars[i]))) {
                set.add(chars[i]);

            }

        }
        Iterator<Character> iterator = set.iterator();
        while (iterator.hasNext()) {
            System.out.print(iterator.next());
        }


    }

}

全部评论

相关推荐

UtopianYou...:这个简历排版真的不太行哦,去找免费的或者花点小钱,把排版弄整齐一点吧,看着舒服。
点赞 评论 收藏
分享
03-04 07:14
门头沟学院 C++
黑皮白袜臭脚体育生:老板:都给工作机会了还想要工资,哪来这么多好事
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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