Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use List::MoreUtils qw( uniq );
    my @array = (1, 1, 3, 2, 8, 9, 4, 2, 3);
    print uniq( @array ), "\n";