Help for this page

Select Code to Download


  1. or download this
    my @U = @NU;
    
  2. or download this
    my @U = uniq @NU;        # From List::Util
    
  3. or download this
    my %seen;
    my @U = grep !$seen{$_}++, @NU;