BOJ - 1302

주의·2024년 1월 24일
0

boj

목록 보기
108/214

백준 문제 링크
베스트셀러

❓접근법

  1. 책의 이름과 개수를 딕셔너리 dic에 넣어준다.
  2. 가장 많이 팔린 책, 책의 이름을 사전 순으로 정렬한다.
  3. 가장 첫번째에 오는 책의 이름을 출력하면 끝

👌🏻코드

N = int(input())

dic = {}
for _ in range(N):
    book = input()
    if book not in dic:
        dic[book] = 1
    else:
        dic[book] += 1

answer = sorted(dic.items(), key = lambda x:(-x[1], x[0]))
print(answer[0][0])

0개의 댓글