You are viewing a single comment's thread. Return to all comments →
from collections import Counter
n =int(input())
dict_rooms = Counter(input().split(" "))
cpt_room = dict_rooms.most_common()[::-1]
print(cpt_room[0][0])
Seems like cookies are disabled on this browser, please enable them to open this website
The Captain's Room
You are viewing a single comment's thread. Return to all comments →
from collections import Counter
n =int(input())
dict_rooms = Counter(input().split(" "))
cpt_room = dict_rooms.most_common()[::-1]
print(cpt_room[0][0])