Help for this page

Select Code to Download


  1. or download this
    my @file1 = <FILE1>;
    my %file1 = normalize_file1(@file1);
    ...
    my %file2 = normalize_file2(@file2);
    
    # Do the comparisons here. Use what I gave before.
    
  2. or download this
    sub normalize_file1 {
        my @file1 = @_;
    ...
    
        return %file1;
    }