Given a variable number of arrays, or an array of arrays, what is the best Julian way to find the values that occur in all of them? So for
a = [1,2,3,4,5] b = [6,7,3,4,9] would return 3 and 4? I thought about using .== for every possible pair of the N arrays but I wondered if there was a better way? Thanks, Ben.
