Help for this page

Select Code to Download


  1. or download this
    use List::Util qw(max);
    my $max = max (map $#$_, @LoL);
    
  2. or download this
    use List::Util qw(max);
    my $max = max (map $#$_, @LoL);
    my @where = grep $#{$LoL[$_]} == $max, 0..$#LoL;