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