Changes from CAT session

This commit is contained in:
2026-04-09 14:15:45 -04:00
parent 6949336bbe
commit a30e9b2556
9 changed files with 23 additions and 0 deletions

View File

@@ -27,12 +27,18 @@ class Deck:
self._cards.append(Card(suit, value)) #creates a standard 52-card deck
def shuffle(self):
"""
Shuffles the deck of cards using the Fisher-Yates algorithm. This algorithm iterates through the deck and swaps each card with a randomly selected card from the remaining unshuffled portion of the deck. After shuffling, it resets the next card index to 0.
"""
for i in range(len(self._cards)): #iterates through each card in the deck
j = random.randrange(i, len(self._cards)) #selects a random index from i to the end of the deck
self._cards[i], self._cards[j] = self._cards[j], self._cards[i] #Shuffles the deck
self._next_card = 0 #Resets the next card index after shuffling.
def deal(self):
"""
Deals the next card from the deck. Returns None if there are no cards left to deal.
"""
if self._next_card >= len(self._cards):
return None #Returns None if there are no cards left to deal.
card = self._cards[self._next_card]