CS373 - Card Deck Implementation
Virtual Deck of Cards Implementation
Goal: Implement a Card Deck class.
In preparation for our Solitaire Simulator, we will need a PlayingCards class.
Assignment details:
- Create a Card Deck class using Python.
- Create tests for the class.
- Confirm that the class works.
Resources:
- Overview of the game of solitaire.
- The Fisher-Yates (Knuth version) Algorithm: Use this algorithm to implement card shuffling algorithm.