Help for this page

Select Code to Download


  1. or download this
    my ( @res, $last );
    foreach my $item ( @sorted ) {
      next if ( defined $last and $item eq $last );
      push @res, $item;
      $last = $item;
    };