in reply to Re: finding unique elements in an array
in thread finding unique elements in an array

Although your solution uniqifies the elements of the array, it isn't possible to tell the number of times an element appears in the original array, which apparently is required.

Arjen

  • Comment on Re: Re: finding unique elements in an array

Replies are listed 'Best First'.
Re: Re: Re: finding unique elements in an array
by zby (Vicar) on Apr 02, 2003 at 08:32 UTC
    Hmm. I really can not find that requirement.
      only those array elements that appears once (and not twice or more...)
      Maybe I'm reading it totally wrong, but it seems to me that he wants only the elements that occur once in the array.

      Arjen

        You are right.