Help for this page

Select Code to Download


  1. or download this
    my $max_col = (sort {$a <=> $b} map $#$_, @rows)[-1];
    
  2. or download this
    my ($max_col) = sort {$b <=> $a} map $#$_, @rows;