목록단어 (1)
컴공생의 다이어리
[파이썬, 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)
Development/Algorithm & Coding Test
2021. 8. 8. 00:01