RosettaCodeData/Task/Remove-duplicate-elements/Perl/remove-duplicate-elements-4.pl

4 lines
74 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
my %seen;
@seen{qw(1 2 3 a b c 2 3 4 b c d)} = ();
my @uniq = keys %seen;