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