DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
'uniq' Array
A much more idiomatic and efficient version of the 'uniq array' code at <a href="http://www.bigbold.com/snippets/posts/show/152 ">152</a> is:
# Input: @list
# Output: @uniqed
my %seen;
my @uniqed = grep !$seen{$_}++, @list;






Comments
Snippets Manager replied on Fri, 2007/02/02 - 11:03pm
Snippets Manager replied on Fri, 2007/02/02 - 11:03pm
Snippets Manager replied on Mon, 2012/05/07 - 2:12pm
my @uniq = keys %{{ map { $_ => 1 } @list }};