https://www.acmicpc.net/problem/1157
word = input().upper()
word_set = list(set(word))
cnt = []
for i in word_set:
cnt.append(word.count(i))
if cnt.count(max(cnt))>1 :
print("?")
else:
print(word_set[cnt.index(max(cnt))])
'알고리즘 > 백준' 카테고리의 다른 글
백준 2941: 크로아티아 알파벳 (Python) (0) | 2021.08.25 |
---|---|
백준 2908: 상수 (Python) (0) | 2021.08.25 |
백준 2675: 문자열 반복 (Python) (0) | 2021.08.25 |
백준 10809: 알파벳 찾기 (Python) (0) | 2021.08.25 |
백준 11654: 아스키 코드 (Python) (0) | 2021.08.25 |