728x90
import sys
n = int(sys.stdin.readline())
number = list(set(map(int, sys.stdin.readline().split()))) #1
number.sort() #2
print(*number)
#1 : 입력받은 데이터를 set으로 묶어 중복을 제거하고 마지막에 list()로 묶는다
#2 : 리스트 오름차순 정렬
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 1652 파이썬(python) : 누울 자리를 찾아라 - (★) (0) | 2022.09.07 |
---|---|
[백준] 2693 파이썬(python) : N번째 큰 수 (0) | 2022.09.06 |
[백준] 1743 파이썬(python) : 음식물 피하기 (0) | 2022.09.03 |
[백준] 11004 파이썬(python) : K번째 수 (0) | 2022.09.02 |
[백준] 10987 파이썬(python) : 모음의 개수 (0) | 2022.08.31 |