0 out of 68 challenges solved

Zip an arbitrary number of lists together

def myzip(*lists):
    """
    Zips an arbitrary number of lists together and returns the zipped list.

    Args:
    *lists: The input lists.

    Returns:
    list: The zipped list.
    """
    # TODO: Implement the myzip function
    pass