I have a list of whole arrays. I need to find common elements between them. I can think of expanding what is indicated in common elements in two lists
Example would be [1,3,5], [1,6,7,9,3], [1,3,10,11] should result in [1,3]
There are no duplicates in arrays either.
Is there a direct way to do this?
java collections arrays guava colt
ravindrab
source share