4 lines
76 B
Perl
4 lines
76 B
Perl
|
|
use List::MoreUtils qw(uniq);
|
||
|
|
|
||
|
|
my @uniq = uniq qw(1 2 3 a b c 2 3 4 b c d);
|