Browse by Tags

All Tags » Performance » Cards (Poker) (RSS)

Card Games: Testing the Poker Coder (a short before I start back into the math)...

Testing the poker coder is actually fairly fun. We know quite a bit about the sample data, and we know exactly how many combinations there are. So let's take a look at some naive approaches. for(int i = 0; i < 52; i++) { for(int j = 0; j < 52; j...
More Posts