본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#266 백준 파이썬 [10867] 중복 빼고 정렬하기

https://www.acmicpc.net/problem/10867

 

 

Python Code

#입력
N = int(input())
number_list = list(map(int, input().split()))

#출력
for i in sorted(list(set(number_list))): #set으로 중복 방지, sorted로 정렬
    print(i, end = ' ')