I have two arrays that have overlapping elements. I would like to make a third array that only has the unique elements.
I can concatenate them using Array1.concat(Array2), but this of course just puts them together. I suspect the answer is finding the duplicates in this array and zapping them.
But how do I do that?
Help is appreciated,
Tom
I can concatenate them using Array1.concat(Array2), but this of course just puts them together. I suspect the answer is finding the duplicates in this array and zapping them.
But how do I do that?
Help is appreciated,
Tom