오늘의 문제 : 카드
Counter 함수를 통해 횟수별로 정렬하고 오름차순으로 정렬했다.
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])