Vocabularysets.
extrasInputsOutputsWord descriptionConverts the sequences to sets and takes the element-wise
xor. Outputs elements that are in either set but not in both.
USING: sets.extras prettyprint ;
{ 1 2 3 } { 2 3 4 } setwise-xor .
{ 1 4 }
NotesKnown as setxor1d in numpy.
Definition