Question: How to find a list of common sub list from a number of of list?

For example
input 3 lists

[1,2,3,4,5]
[0,5,2,3,7]
[7,5,2,3,2]
 

return [2,3],[5,2,3]

Please Wait...