0 out of 68 challenges solved

Find common elements across multiple lists

def find_common_elements(*lists):
    """
    Finds the common elements across multiple lists.

    Args:
        *lists (list): The input lists.

    Returns:
        list: A new list with the common elements.
    """
    # TODO: Implement the find_common_elements function
    pass