0 out of 68 challenges solved
def sort_students(students): """ Sorts the given list of student dictionaries in ascending order based on their age. Args: students (list): The input list of student dictionaries. Returns: list: A new list with the students sorted based on their age. """ # TODO: Implement the sort_students function pass