DHistory
[Baekjoon] Sort - 1302 베스트셀러 본문
문제
풀이
import sys
from collections import Counter
n = int(sys.stdin.readline().rstrip())
books = []
for _ in range(n):
books.append(sys.stdin.readline().rstrip())
def solution(books):
return sorted(Counter(books).items(), key=lambda x: (-x[1], x[0]))[0][0]
print(solution(books))
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] Sort, Binary Search - 2776 암기왕 (0) | 2023.09.11 |
---|---|
[Baekjoon] Sort - 11652 카드 (0) | 2023.09.11 |
[Baekjoon] Sort - 10825 국영수 (0) | 2023.09.09 |
[Baekjoon] Sort - 1764 듣보잡 (0) | 2023.09.09 |
[Baekjoon] Sort - 10816 숫자 카드 2 (0) | 2023.09.09 |