in reply to Is there an easy way to assign guaranteed unique values to a simple array without looping through whole array?
my %seen; my @nodupes = grep { not $seen{$_}++ } @mayhavedupes; [download]