문제
https://www.acmicpc.net/problem/1157
풀이
from collections import Counter
s = input().upper()
s = Counter(s).most_common()
if len(s)>1 and s[0][1] == s[1][1]:
print("?")
else:
print(s[0][0])
Counter를 사용하여 most_common으로 많이 나온 순서로 정렬해준다.
길이가 1 이상이고 첫번째와 두번째가 같으면 ? 출력 아니면 제일 앞 출력
'코딩테스트 > Python' 카테고리의 다른 글
[Python] 백준 #1966 - 프린터 큐 (0) | 2021.12.11 |
---|---|
[Python] 백준 #1152 - 단어의 개수 (1) | 2021.12.08 |
[Python] 백준 #2675 - 문자열 반복 (1) | 2021.12.08 |
[Python] 백준 #10866 - 덱 (1) | 2021.12.08 |
[Python] 백준 #11866 - 요세푸스 문제 0 (1) | 2021.12.07 |