Performing intersections isn't trivial, for each element you have to see if it exists in all other lists. A naive implementation will be O(k*n^2) where n is the number of elements in each list and k...