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.
lst_score = []
for _ in range(int(input())):
name = input()
score = float(input())
lst_name.append(name)
lst_score.append(score)
res = []
num = sorted(list(set(lst_score)))[1] #get 2nd ranked score (set eliminates dublicates)
for i in range(len(lst_score)):
if lst_score[i] == num:
res.append(lst_name[i]) # append name to result if score is matched
res = sorted(res)
for i in res:
print(i)
```
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 →
` if name == 'main': lst_name = []