senadityasingh commited on
Commit
0e97bab
·
verified ·
1 Parent(s): 0e73821

corrected docstring

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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
- dealer_card_rank: A string representing delaler's face-up card
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
  """