s = input().upper()
s_li = list(set(s))
cnt = []
for i in s_li:
cnt.append(s.count(i))
if cnt.count(max(cnt)) >= 2:
print('?')
else:
print(s_li[cnt.index(max(cnt))])
s = input().upper()
cnt = []
for i in range(65, 91):
cnt.append(s.count(chr(i)))
if cnt.count(max(cnt)) > 1:
print('?')
else:
print(chr(cnt.index(max(cnt))+65))
'코딩테스트 > 백준' 카테고리의 다른 글
백준 9012번 괄호 python 파이썬 (0) | 2022.10.07 |
---|---|
백준 1316번 그룹 단어 체커 python 파이썬 (0) | 2022.10.07 |
백준 2675번 문자열 반복 python 파이썬 (0) | 2022.10.07 |
백준 1152번 단어의 개수 python 파이썬 (0) | 2022.10.07 |
백준 8958번 OX퀴즈 python 파이썬 (0) | 2022.10.07 |