[Python] 백준 1157 : 단어 공부
2021. 8. 19. 01:32
https://www.acmicpc.net/problem/1157
string = input()
string = string.upper()
string_set = list(set(string))
a = []
for i in string_set:
a.append(string.count(i))
if len(list(filter(lambda x: a[x] == max(a), range(len(a)))))>1:
print("?")
else:
print(string_set[a.index(max(a))].upper())
'Programming > BOJ' 카테고리의 다른 글
[Python] 백준 1292번 : 쉽게 푸는 문제 (0) | 2021.08.19 |
---|---|
[Python] 백준 11653번 : 소인수분해 (0) | 2021.08.19 |
[Python] 백준 1100번 : 하얀 칸 (0) | 2021.08.19 |
[Python] 백준 1026번 : 보물 (0) | 2021.08.19 |
백준 문제집 모음 (0) | 2021.07.27 |