가오리의 코딩일기
[2204] 도비의 난독증 테스트 본문
https://www.acmicpc.net/problem/2204
while True:
testCase = int(input())
wordList = []
if testCase == 0:
break
for _ in range(testCase):
wordList.append(input())
wordList.sort(key=str.lower)
print(wordList[0])
'Python > 백준' 카테고리의 다른 글
[2447] 별 찍기 - 10 (0) | 2022.07.12 |
---|---|
[1206] DFS와 BFS (0) | 2022.07.09 |
[2581] 소수 (0) | 2022.07.06 |
더하기 (0) | 2022.07.03 |
[10872] 팩토리얼 (0) | 2022.06.19 |