0 out of 68 challenges solved
def take(n, seq): """ Returns a list containing the first n elements of seq. Args: n: The number of elements to take. seq: The input sequence. Returns: list: The list of the first n elements. """ # TODO: Implement the take function pass