I have two arrays, a and b, of different size. Each one contains unique values.
I want to compare both and if any value of array a is in array b, then I want to dele
Use setdiff to find elements in one set but not the other.
setdiff
setdiff(b, a)