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.
if name == 'main':
students=[]
student=[]
for _ in range(int(input())):
name = input()
score = float(input())
students.append([name,score])
score=sorted(set([student[1] for student in students]))
second_lowest=score[1]
names=([student[0] for student in students if second_lowest==student[1]])
names.sort()
for i in names:
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 →
All test cases passed
if name == 'main': students=[] student=[] for _ in range(int(input())): name = input() score = float(input()) students.append([name,score])
for i in names: print(i)