How can I Compare values of two arrays to check if 1 array does not have an element of another array for example –
array1(0) = 85
array1(1) = 459
array1(2) = 90
array2(0) = 459
array2(1) = 90
I want to return the values that are not present in the second array? I tried with double for loops but didn’t work out to well for me.
1 Answer