david2008 has asked for the wisdom of the Perl Monks concerning the following question:
and got the result 7391/16384.use strict; use warnings; my %h; foreach my $i (0..10000) { $h{$i} = $i+10; } my $j = %h; print "$j";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: how are the number of buckets in a perl hash chosen
by oiskuu (Hermit) on Jun 09, 2014 at 08:42 UTC | |
by david2008 (Scribe) on Jun 09, 2014 at 09:00 UTC | |
Re: how are the number of buckets in a perl hash chosen
by Anonymous Monk on Jun 09, 2014 at 07:52 UTC | |
by david2008 (Scribe) on Jun 09, 2014 at 08:31 UTC | |
by Anonymous Monk on Jun 09, 2014 at 15:17 UTC |