Consider two sets of integers, X = [x1, x2, . . . , xn] and Y =
[y1, y2, . . . , yn]. Write two versions of a FindUncommon(X, Y )
algorithm to find the uncommon elements in both sets.
Each of your algorithms should return an array with the uncommon
elements, or an empty array if there are no uncommon
elements.
You do not have to write the ‘standard’ algorithms – just use them.
Therefore, you should be...