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__':records=[]for_inrange(int(input())):name=input()score=float(input())records.append([name,score])# Step 2: Extract grades and find second lowest unique gradegrades=sorted(set([scoreforname,scoreinrecords]))#Getuniquegradesandsortthem# Step 3: Get the second lowest gradesecond_lowest=grades[1]#Theseconduniquegrade# Step 4: Collect names of students with the second lowest gradesecond_lowest_students=[nameforname,scoreinrecordsifscore==second_lowest]# Step 5: Sort names alphabeticallysecond_lowest_students.sort()# Step 6: Print the names of students with the second lowest gradeforstudentinsecond_lowest_students:print(student)
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 →