https://www.acmicpc.net/problem/1181
1
2
3
4
5
6
7
8
|
N = int(input())
word_list = []
for i in range (N) :
word = str(input())
if word not in word_list :
word_list.append(word)
word_list.sort(key = lambda x : (len(x), x))
print("\n".join(word_list))
|
cs |
- lambda함수로 sort 조건 설정★★★
- join으로 list 출력
- if word not in word_list 로 중복 체크
- word = str(input()) 으로 받기
'Algorithm > Greedy, Implementation' 카테고리의 다른 글
[Python] 백준 #7568 덩치 (0) | 2022.02.26 |
---|---|
[Python] 백준 #1874 스택 수열 (2) | 2021.06.23 |
[Python] 백준 #1085 직사각형에서 탈출 (0) | 2021.06.21 |