0 out of 68 challenges solved

Drop the first n elements from a sequence

def drop(n, seq):
    """
    Returns a list containing the elements of seq with the first n elements dropped.

    Args:
    n: The number of elements to drop.
    seq: The input sequence.

    Returns:
    list: The list with the first n elements dropped.
    """
    # TODO: Implement the drop function
    pass