
Binned, the card game
- Take two packs of 52 cards
- Separate out the ace to eight of hearts from both packs
- Use one set to create columns
- Retain the other to shuffle and deal from
Repeatedly
- Shuffle the 8 cards and deal two
- If the column matching the second card has fewer cards than the first
- Add a card from the other pack to that column
- Otherwise add a card to the column matching the first card
- Return the dealt cards to the 6 other cards
This game implements the
Balls into bins problem.
Specifically the power of two random choices which is used for load balancing.