Help for this page

Select Code to Download


  1. or download this
    @b = sort {$a <=> $b} @b;
    @a = sort {$a <=> $b} @a;
    print "@b\n";
    ...
      }
      $j++;
    }
    
  2. or download this
    @c = grep { 
      defined($b[0]) and !($b[0] eq $_) or !shift @b
    } sort {$a <=> $b} @a;