0 out of 68 challenges solved

Double each number in a list

def multiply_list(numbers):
    """
    Multiplies each element in the given list by 2.

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

    Returns:
        list: A new list with each element multiplied by 2.
    """
    # TODO: Implement the multiply_list function
    pass