Spaces:
Sleeping
Sleeping
corrected docstring
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def blackjack_strategy(player_cards: list[str], dealer_card:str)-> str:
|
|
14 |
Args:
|
15 |
player_cards: A list of strings representing the player's cards.
|
16 |
Each card is represented as two character string (ex: 'AH' for Ace of hearts, '10S' for 10 of Spades).
|
17 |
-
|
18 |
|
19 |
Returns: Recommended action ("Hit", "Stand", or "Double Down").
|
20 |
"""
|
|
|
14 |
Args:
|
15 |
player_cards: A list of strings representing the player's cards.
|
16 |
Each card is represented as two character string (ex: 'AH' for Ace of hearts, '10S' for 10 of Spades).
|
17 |
+
dealer_card: A string representing delaler's face-up card
|
18 |
|
19 |
Returns: Recommended action ("Hit", "Stand", or "Double Down").
|
20 |
"""
|