in reply to What I am missing here
I think your shuffle is buggy. Use the built in shuffle instead.
use List::Util; # ... snip ... @deck = List::Util::shuffle @deck;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: What I am missing here
by Marshall (Canon) on Mar 21, 2012 at 04:01 UTC | |
Re^2: What I am missing here
by JavaFan (Canon) on Mar 20, 2012 at 22:26 UTC | |
Re^2: What I am missing here
by heatblazer (Scribe) on Mar 21, 2012 at 05:45 UTC |
In Section
Seekers of Perl Wisdom