백준 문제 링크
단어 정렬
- 단어를 받을 리스트 words에 단어를 넣어주고, 중복을 제거한다.
- sorted 함수를 이용해 길이와 사전 순으로 정렬한 뒤 출력한다.
N = int(input())
words = []
for _ in range(N):
words.append(input())
words = list(set(words))
words = sorted(words, key = lambda x : (len(x), x))
for i in words:
print(i)