[Python] BOJ 10867번. 중복 빼고 정렬하기 작성일 2020-06-11 | In Algorithm | 10867번. 중복 빼고 정렬하기 문제 링크 https://www.acmicpc.net/problem/10867 풀이 코드 12345678910# 10867번. 중복 빼고 정렬하기 n = int(input()) nset = set(map(int, input().split())) nList = list(nset) nList.sort() for i in nList: print(i, end=' ') 비고