We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
x=[]
y=[]
for _ in range(int(input())):
name = input()
score = float(input())
x.append([name,score])
y.append(score)
y=sorted(list(set(y)))
l=[]
for a in x:
if a[1]==y[1]:
l.append(a[0])
l.sort()
for a in l:
print(a)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Nested Lists
You are viewing a single comment's thread. Return to all comments →