https://www.acmicpc.net/problem/1181
import sys
n = int(sys.stdin.readline())
word = []
for i in range(n):
word.append(sys.stdin.readline().rstrip())
word = list(set(word)) # 중복 제거
word.sort() # 알파벳 순서대로 정렬
word.sort(key = len) # 길이 순서대로 정렬
for i in word:
print(i)
'알고리즘 > 백준' 카테고리의 다른 글
백준 18870: 좌표 압축 (Python) (0) | 2021.09.15 |
---|---|
백준 10814: 나이순 정렬 (Python) (0) | 2021.09.15 |
백준 11651: 좌표 정렬하기 2 (Python) (0) | 2021.09.13 |
백준 11650: 좌표 정렬하기 (Python) (0) | 2021.09.13 |
백준 1427: 소트인사이드 (Python) (0) | 2021.09.13 |