[백준]B1-1157

py_code·2022년 1월 7일
0

백준-브론즈1

목록 보기
3/7
post-custom-banner
string = input().upper()
word = list(set(string))
new = []

for i in word:
    cnt = string.count(i)
    new.append(cnt)
                    
if new.count(max(new)) >= 2: print("?")
else: print(word[new.index(max(new))])
profile
개발자를 꿈꿉니다.

0개의 댓글