in reply to Re: Powerball Frequency Analyzer
in thread Powerball Frequency Analyzer
Meh. This is elegant:
my $content = get(...); my @accum = ( undef, (\%normals) x 5, \%powers ); for ( split /\n/, $content ) { my @data = split; $accum[$_]{$data[$_]}++ for 1 .. 6; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Powerball Frequency Analyzer
by Anonymous Monk on Apr 26, 2011 at 14:22 UTC |