티스토리 뷰
https://www.acmicpc.net/problem/1157
word = input()
s = list(word.lower())
alpha = list(set(s)) // 사용된 알파벳
cnt = {} // 사용된 횟수
for i in range(len(alpha)):
cnt[alpha[i]] = s.count(alpha[i])
result = []
for key in cnt.keys():
if cnt[key] == max(cnt.values()):
result.append(key)
if len(result) > 1:
print('?')
else:
print(result[0].upper())
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 2908 : 상수 - Python (0) | 2020.03.26 |
---|---|
[백준] 1152 : 단어의 개수 - Python (0) | 2020.03.26 |
[백준] 11720 : 숫자의 합 - Python (0) | 2020.03.26 |
[백준] 11654 : 아스키 코드 - Python (0) | 2020.03.26 |
[백준] 1065 : 한수 - Python (0) | 2020.03.26 |