def get_grades(grades: List[list]) -> int:
"""Return the name of the student that has the highest grade.
If there is a tie for the highest grade, it should return the name that appears
first in grades."""
My data set is a list of lists e.g.
GRADES = [['Todd', 'Biology', 67, 5], ['Ben', 'Chemistry', '88', 7]]
Here, the grade lies at index 2 of each sublist.
How do I do this?