[BOJ] 베스트셀러(python) - 복습

.·2022년 10월 20일
0

문제 링크 - https://www.acmicpc.net/problem/1302


풀이 과정

  • 딕셔너리를 {'책 이름': 팔린 수}의 형태로 만들어 사용했다.
  • 딕셔너리를 팔린 수로 먼저 정렬하고 같다면 책 이름을 사전 순으로 정렬한 뒤 출력

나의 풀이

n = int(input())

books = {}
for _ in range(n):
    book = input()
    if book not in books:
        books[book] = 1
    else:
        books[book]+=1
print(sorted(books.items(), key = lambda x: (-x[1], x[0]))[0][0])

0개의 댓글