0 out of 68 challenges solved

Multiply each element in a list by its index

def multiply_list_by_index(numbers):
    """
    Multiplies each element in the given list by its index.

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

    Returns:
        list: A new list with each element multiplied by its index.
    """
    # TODO: Implement the multiply_list_by_index function
    pass