0 out of 68 challenges solved

Order a list of strings in alphabetical order

def order_list(strings):
    """
    Orders the given list of strings in alphabetical order.

    Args:
        strings (list): The input list of strings.

    Returns:
        list: A new list with the strings sorted in alphabetical order.
    """
    # TODO: Implement the order_list function
    pass