DHistory
[Baekjoon] Sort - 1181 단어 정렬 본문
문제
풀이
import sys
n = int(sys.stdin.readline().rstrip())
text = []
for _ in range(n):
text.append(sys.stdin.readline().rstrip())
def solution(text):
return sorted(set(text), key=lambda x: (len(x), x))
print(*solution(text), sep='\n')
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] Sort - 나이순 정렬 (0) | 2023.09.08 |
---|---|
[Baekjoon] Sort - 11650 좌표 정렬하기 (0) | 2023.09.08 |
[Baekjoon] Sort - 2751 수 정렬하기 2 (0) | 2023.09.08 |
[Baekjoon] DFS/BFS - 1325 효율적인 해킹 (0) | 2023.09.08 |
[Baekjoon] DFS/BFS - 27737 버섯 농장 (0) | 2023.09.07 |