in reply to Re: Re: Re: Array Comparison
in thread Array Comparison

my @uniq = sort keys %{{map {$_ => 1} @cleaned}};
or you could combine two statements in one (not recommended though :-) ...
my @uniq = sort keys %{{map {$_ => 1} grep{not exists $exclude{$_}}@words}};