pseudo code:
NSArray *arr1 = {"mike","george","Tim","Tom"...}
NSArray *arr2 = {"mike","george","Chris","Adam"...}
NSArray *arr3 = {"Don","george","mike","Tom"...}
NSArray *arr4 = {"george","Nicole","Moe","mike"...}
//Add these arrays to the dictionary
for(int i=0; i<n, i++)
[dictionary addObject:arr[i]];
I would like to find the duplicate value(s) that exists in ALL of the arrays, not some. In this example, the value would be {"george","mike"}.