0 out of 68 challenges solved

Sort students by age

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