티스토리 뷰
import sys
N = int(sys.stdin.readline())
strings = []
for _ in range(N):
word = input()
strings.append((word, len(word)))
strings = list(set(strings))
strings = sorted(strings, key = lambda x:(x[1], x[0]))
for string in strings:
print(string[0])
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 1182 : 부분수열의 합 - Python (0) | 2021.04.08 |
---|---|
[백준] 2960 : 에라토스테네스의 체 - Python (0) | 2021.02.26 |
[백준] 12865 : 평범한 배낭 - Python (0) | 2021.02.23 |
[백준] 2468 : 안전 영역 - Python (0) | 2021.02.20 |
[백준] 1012 : 유기농 배추 - Python (0) | 2021.02.18 |