백준-1157 : 단어 공부(Python)

잡초·2023년 4월 6일
0
post-thumbnail
word = input().upper()
arr = list(set(word))
count = []

for i in arr:
    cnt = word.count(i)
    count.append(cnt)

if count.count(max(count))>1:
    print("?")
else:
    result = count.index(max(count))
    print(arr[result])
profile
개발자가 되고싶은 잡초

0개의 댓글