[문제]
https://www.acmicpc.net/problem/2204
[풀이]
sort 함수에서 key값을 str.lower로 주면 풀 수 있다.
[코드]
if __name__ == '__main__':
while True:
voca = []
n = int(input())
if n == 0:
quit()
for i in range(n):
voca.append(input())
voca.sort(key=str.lower)
print(voca[0])
'문제풀이 > BOJ' 카테고리의 다른 글
[Python] BOJ/백준 1205번 등수 구하기 (0) | 2021.06.29 |
---|---|
[Python] BOJ/백준 1251번 단어 나누기 (0) | 2021.06.28 |
[Python] BOJ/백준 1475번 방 번호 (0) | 2021.06.24 |
[Python] BOJ/백준 2435번 기상청 인턴 신현수 (0) | 2021.06.23 |
[Python] BOJ/백준 2508번 사탕 박사 고창영 (0) | 2021.06.22 |