Help for this page

Select Code to Download


  1. or download this
                    push @sort_array, $trial_1;
                  push @pointer_array, $key_r;
    
  2. or download this
                   push @sort_array, [ $trial_1, $key_r ];
    
  3. or download this
               my @sorted = sort{ $a->[ 0 ] <=> $b->[ 0 ] } @sort_array;
    
  4. or download this
    my( $closest, $pointer ) = @{ $sorted[ 0 ] };
    
  5. or download this
    #!/usr/bin/perl -slw
    use strict;
    ...
    
    } ## cycle through again til done with all files
    
  6. or download this
    #!/usr/bin/perl -slw
    use strict;
    ...
        print STDOUT scalar localtime;
    
    } ## cycle through again til done with all files