import java.util.Scanner;
import java.util.TreeSet;
public class Main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int n = kb.nextInt();
TreeSet<Integer> set = new TreeSet<>();
for(int i=0; i<n; i++) {
set.add(kb.nextInt());
}
for(int x: set) {
System.out.print(x+" ");
}
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 10815번 숫자 카드 (0) | 2024.01.02 |
---|---|
[백준] 11478번 서로 다른 부분 문자열의 개수 (0) | 2024.01.02 |
[백준] 2822번 점수 계산 (0) | 2024.01.01 |
[백준] 2910번 빈도정렬 (1) | 2023.12.27 |
[백준] 7785번 회사에 있는 사람 (1) | 2023.12.27 |