Help for this page

Select Code to Download


  1. or download this
    my %current,%last;
    
    ...
      $changes{$k} = $current{$k} unless
          $current{$k} eq $last{$k};
    }
    
  2. or download this
    my %current,%last,%keys;
    
    ...
       next unless(exists $current{$k});
       $keys{$k} = 1;
    }