(deck: List[str])
| 44 | |
| 45 | |
| 46 | def shuffleDeck(deck: List[str]) -> List[str]: |
| 47 | # use Python's built-in shuffle which is efficient and correct |
| 48 | random.shuffle(deck) |
| 49 | return deck |
| 50 | |
| 51 | |
| 52 | """Draw card function that draws a specified number of cards off the top of the deck |