Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 463 Bytes

File metadata and controls

28 lines (20 loc) · 463 Bytes

Nested Lists - HackerRank

Note: This question is from HackerRank

Given the names and grades for each student in a class of students, store them in a nested list and print the name(s) of any student(s) having the second lowest grade.

Sample Input 0

5 Harry 37.21 Berry 37.21 Tina 37.2 Akriti 41 Harsh 39

Sample Output 0

Berry Harry

Solution

Click here to view the solution.