Help for this page

Select Code to Download


  1. or download this
        @arr1=sort($_[0]);
        @arr2=sort($_[1]);
    
  2. or download this
        my @arr1 = sort @{$_[0]};
        my @arr2 = sort @{$_[1]};
    
  3. or download this
        for (0 .. $#arr1) {
            if ($arr2[$_] ne $arr1[$_]) {
                print "Anchor/indicator mismatch in $arr1[$_]\n";
            }
        }