컴공생의 다이어리
[파이썬, Python] 백준 1181번 : 단어 정렬 본문
백준 1181번 : 단어 정렬
내 코드
import sys
n = int(input())
word_list = []
for _ in range(n):
word_list.append(sys.stdin.readline().strip())
word_list = list(set(word_list)) # 중복 제거
word_list.sort(key = lambda x: (len(x), x)) # 정렬
result = "\n".join(word_list)
print(result)
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 5635번 : 생일 (0) | 2021.08.21 |
---|---|
[파이썬, Python] 백준 11650번 : 좌표 정렬하기 (0) | 2021.08.19 |
[파이썬, Python] 백준 1011번 : Fly me to the Alpha Centauri (0) | 2021.06.27 |
[파이썬, Python] 백준 10757번 : 큰 수 A+B (0) | 2021.06.15 |
[파이썬, Python] 백준 2839번 : 설탕 배달 (2) | 2021.06.14 |
Comments