728x90
반응형
단순 문자열 문제이다.
for _ in range(int(input())):
s = input()
li = [0]*26
for c in s:
if c.isalpha():
li[ord(c)-ord('a')] += 1
t = max(li)
print(chr(ord('a') + li.index(t)) if li.count(t) < 2 else '?')
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10102번 개표(python) (0) | 2021.02.28 |
---|---|
백준 알고리즘 9243번 파일 완전 삭제(python) (0) | 2021.02.28 |
백준 알고리즘 8949번 대충 더해(python) (0) | 2021.02.28 |
백준 알고리즘 14490번 백대열(python) (0) | 2021.02.28 |
백준 알고리즘 17245번 서버실(python) (0) | 2021.02.28 |