반응형
250x250
Recent Posts
Recent Comments
Link
«   2024/06   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
Archives
Today
Total
관리 메뉴

지나가던 개발자

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

PS/Python

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

KwonYongHyeon 2023. 8. 17. 23:13
728x90
반응형

 

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