0 out of 68 challenges solved
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