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

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

#牛客春招刷题训练营#

直接使用TreeSet将生成的随机数遍历一次,然后遍历TreeSet就能得到从小到大的排序结果