반응형
# @Author YoungMinKim
# baekjoon
import sys
N = int(sys.stdin.readline())
X = list(map(int,sys.stdin.readline().split()))
unique = list(set(X))
for i in sorted(unique):
print(i,end=' ')
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 1920 (0) | 2020.10.10 |
---|---|
baekjoon - python - 10815 (0) | 2020.10.10 |
baekjoon - python - 1927 (0) | 2020.10.04 |
baekjoon - python - 11279 (0) | 2020.10.04 |
baekjoon - python - 1002 (0) | 2020.10.04 |
댓글