Help for this page

Select Code to Download


  1. or download this
    for (pair(zip($array1, $array2))) {
        my ($x, $y) = @$_;
    ...
    
        ...
    }
    
  2. or download this
    for (
        sort { $a->[0] <=> $b->[0] or $a->[1] cmp $b->[1] }
    ...
        my ($number, $char) = @$_;
        ...
    }