Help for this page

Select Code to Download


  1. or download this
    my %uniq;
    my @new_AOA;
    ...
        my $key = $A->[1] . '-' . $A->[3];
        push @new_AOA, $A unless $uniq{$key}++
    }
    
  2. or download this
    my %uniq;
    my @new_AOA = grep {
        !( $uniq{$A->[1] . '-' . $A->[3]}++ )
    } @AOA;