in reply to Re^3: Best way to initialize hash x repetition array?
in thread Best way to initialize hash x repetition array?

Yes, I already had something like that in my original solution.

But what I meant was determining the max size to use:

my $h3_columns = 2 ; # use List::Util qw(max) ; max (each array size) += 2 $hash3{$_} = [ (0) x $h3_columns ] for @keys3_origin ;

I will find a solution for that, no worries. But that will be after this weekend.

Replies are listed 'Best First'.
Re^5: Best way to initialize hash x repetition array?
by ikegami (Patriarch) on Jun 30, 2018 at 18:07 UTC