http://qs1969.pair.com?node_id=486917


in reply to All Combinations of three arrays.

Normally I would try to figure this out, but I'm in a hurry and so i have to ask for assistance.

You're a long-standing monk here; is this the attitude that you like to find at the front gate every day? It probably took you more time to type up your example than it would to code the solution.

For the fixed-number-of-columns case, just nest loops.

my $struct = [ [], [], [] ]; for my $A (@{$struct->[0]}) { for my $B (@{$struct->[1]}) { for my $C (@{$struct->[2]}) { ... } } }

For the variable-number-of-columns case, a recursive solution or a stack iteration would work.

--
[ e d @ h a l l e y . c c ]