http://www.perlmonks.org?node_id=90495


in reply to How to find and remove duplicate elements from an array?

This is a FAQ, because it's so frequently asked. See How can I remove duplicate elements from a list or array?
  • Comment on Re: How to find and remove duplicate elements from an array?

Replies are listed 'Best First'.
Re: Answer: duplicates in an array
by Anonymous Monk on May 27, 2007 at 04:48 UTC
    Using hash could help in this effort my @unique= keys %hash; Shashidhar Iddamsetty