책너두 - 알고리즘 챌린지[2/20]

Moon·2023년 7월 12일
0
post-thumbnail
post-custom-banner

오늘의 문제 : 카드


Counter 함수를 통해 횟수별로 정렬하고 오름차순으로 정렬했다.

  • input() 값 받는 방식만 바꿔도 시간 차이가 많이난다.(감사합니다!!)

import sys
from collections import Counter

n, *cards = map(int, sys.stdin.buffer.read().splitlines())

cnt_cards = Counter(cards)
sorted_cards = sorted(cards, key = lambda x : (-cnt_cards[x], x))

print(sorted_cards[0])
profile
안녕하세요. Moon입니다!

0개의 댓글