Help for this page

Select Code to Download


  1. or download this
    my @aKeep;
    while (my $line = <F1>) {
    ...
          push @aKeep, $line;  
       }
    }
    
  2. or download this
    my %hValuesInColumn2;
    
    ...
    # extracting the keys may not even be necessary
    # see first part of this answer.
    my @unique_f = keys %hValuesInColumn2;