반응형
문제 정보
제출 코드
string = input().upper()
tmp = list(set(string))
n = []
for s in tmp:
n.append(string.count(s))
# 얕은 복사 (tmp_n = n은 깊은 복사)
tmp_n = n[:]
try:
tmp_n.remove(max(n))
tmp_n.remove(max(n))
print("?")
except:
print(tmp[n.index(max(n))])
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 2908번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1152번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2675번 Python (0) | 2021.10.04 |
[백준 알고리즘] 10809번 Python (0) | 2021.10.04 |
[백준 알고리즘] 11720번 Python (0) | 2021.10.04 |
댓글