Help for this page

Select Code to Download


  1. or download this
    my %temp_for_compare;
    
    ...
          print "$val in both arrays\n";
       }
    }
    
  2. or download this
    for my $a1val (@array1) {
       for my $a2val (@array2) {
    ...
          }
       }
    }
    
  3. or download this
    my @tmpArray1 = sort @array1;
    my @tmpArray2 = sort @array2;
    ...
            shift @tmpArray2;
        }
    }