in reply to Re: remove duplicates from an array!
in thread remove duplicates from an array!

Hi Kirill, Thanks for the response. In My previous post the data was in a file. Now for this problem the data is in an array.

Replies are listed 'Best First'.
Re^3: remove duplicates from an array!
by chromatic (Archbishop) on Jan 07, 2008 at 23:26 UTC
    In My previous post the data was in a file. Now for this problem the data is in an array.

    That doesn't matter. The answer to "How do I remove duplicates from a set of data?" is the same. You may have to transform your data into a form more amenable to this operation, but the techniques for removing duplicates are the same.