Help for this page

Select Code to Download


  1. or download this
    foreach $key (sort keys %npanxxhash) {
        &CountAndHash($key,\@npanxxarray,\%npanxxhash);
    }
    
  2. or download this
    while (<IN>) {
        if ( $_ =~ m/^{.*$/ ) {
    ...
            $minhash{$MIN} = undef;
        }
    }
    
  3. or download this
    while (<IN>) {
        next if ( /^{/ );  ## we only need to check the first character.
    ...
        my $MIN = ( split /,/ )[1];  ## we only need to assign one variabl
    +e
        $minhash{$MIN} = undef;
    }