http://www.perlmonks.org?node_id=1060741


in reply to Creating hash of arrays (in a faster way)

I'd do it this way. I doubt it is any faster than your's, but destroying the input array by a thousand paper cuts seems gratuitous:

@cols = qw(min max sum min max sum);; @values = qw(1 3 4 7 8 9);; push @{ $hash{ $cols[ $_ ] } }, $values[ $_ ] for 0 .. $#values;; pp \%hash;; { max => [3, 8], min => [1, 7], sum => [4, 9] }

I think the real question here is: where do the inputs arrays come from? Is it necessary to build them before constructing the array, or could the hash be built directly from wherever the arrays are populated from?


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.