Help for this page

Select Code to Download


  1. or download this
    my $foo = [
        [1, 2, 3, ...],
        ['a', 'b', 'c', ...],
        ['foo', 'bar', 'baz', ...],
    ];
    
  2. or download this
    my $bar = [
        [1, 'a', 'foo', ...],
        [2, 'b', 'bar', ...],
        [3, 'c', 'baz', ...],
    ];
    
  3. or download this
    my $bar = rearrange($foo);
    
    ...
        }
        return $max;
    }