[백준] #1371 가장 많은 글자 python
2023. 1. 25. 06:00
https://www.acmicpc.net/problem/1371
📕 설명 📕
Python의 library인 Counter를 이용하여 글자를 세어 list에 넣는다.
정렬된 List를 하나씩 출력한다.
🧑🏻💻 나의 풀이 🧑🏻💻
from collections import Counter
li = []
while True:
try:
tmp = input().split()
for i in tmp:
for j in i:
li.append(j)
except:
break
max_ = max(Counter(li).values())
result = []
for i in Counter(li):
if max_ == Counter(li)[i]:
result.append(i)
for i in sorted(result):
print(i, end="")
'Programming > Algorithm' 카테고리의 다른 글
[백준] #9610 사분면 python (0) | 2023.01.26 |
---|---|
[백준] #1547 공 python (0) | 2023.01.26 |
[백준] #10819 차이를 최대로 python (0) | 2023.01.24 |
[백준] #2501 약수 구하기 python (0) | 2023.01.23 |
[백준] #2476 주사위 게임 python (0) | 2023.01.22 |