Reputation: 449
for example I have 2 arrays like the following:
array1 = (2, 3, 4);
array2 = (1, 2, 3, 4, 5);
I want to get the value of the second array, where the value array1 is not found in array2, so we can conclude the following are array3
array3 = (1, 5);
Upvotes: 0
Views: 1565