I\'m trying to figure out how to compare an n number of lists to find the common elements. For example:
p=[ [1,2,3], [1,9,9], .. .. [1,2
reduce(lambda x, y: x & y, (set(i) for i in p))