지나가던 개발자

[Python] 백준 1302번(베스트셀러) 문제 풀이 본문

PS/Python

[Python] 백준 1302번(베스트셀러) 문제 풀이

KwonYongHyeon 2023. 8. 17. 23:13

 

from collections import Counter;print(Counter(sorted([input() for i in range(int(input()))])).most_common()[0][0])
Comments