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])# record and sort the grades of each student while removing the duplicatesgrades=sorted(list(set([record[1]forrecordinrecords])))# Finding the second lowest valuesecond_lowest=grades[1]# Store and display the student names who has the second lowest scoresstudents=sorted(record[0]forrecordinrecordsifrecord[1]==second_lowest)foriinstudents: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 →