0 of 464 solved

Sort Strings in Reverse Alphabetical Order

Write a function `order_list(strings)` that returns a new list of strings sorted in reverse alphabetical order.

#### Example
Input: `["banana", "apple", "grapes", "melon", "kiwi"]`
Output: `["melon", "kiwi", "grapes", "banana", "apple"]`
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