in reply to Re: Re: Re: Eliminate duplicate and original values
in thread Eliminate duplicate and original values

This does not eliminate the duplicate elements. See the requirements in the root node.
If the original array contains A1, B2, C3, C3, D4, then the output should contain A1, B2, D4.
C3 should not be included.
That's a very clever way of obtaining unique values though and will get copied in other places, if you don't mind. :)
  • Comment on Re: Re: Re: Re: Eliminate duplicate and original values