题解 | #明明的随机数#

明明的随机数

https://www.nowcoder.com/practice/3245215fffb84b7b81285493eae92ff0

import java.util.Scanner;

import java.util.Set;
import java.util.HashSet;
import java.util.TreeSet;


// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        Set<Integer> hashSet = new HashSet<>();
        for(int i=0; i<n; i++){
            hashSet.add(in.nextInt());
        }
        Set<Integer> treeSet = new TreeSet<>( ((o1,o2)->o1.compareTo(o2)) );
        treeSet.addAll(hashSet);
        for(Integer i: treeSet){
            System.out.println(i);
        }
    }
}

全部评论

相关推荐

05-29 22:11
门头沟学院 Java
Elastic90:抛开学历造假不谈,这公司的招聘需求也挺怪的,Java开发还要求你有图文识别、移动端开发和c++的经验,有点逆天了。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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