Commit b156e48e authored by cclauss's avatar cclauss Committed by Donne Martin
Browse files

Add missing self variables to Deck of Cards solution (#145)

parent 01789430
......@@ -68,7 +68,7 @@ class Hand(object):
def score(self):
total_value = 0
for card in card:
for card in self.cards:
total_value += card.value
return total_value
......@@ -102,9 +102,9 @@ class Deck(object):
self.deal_index = 0
def remaining_cards(self):
return len(self.cards) - deal_index
return len(self.cards) - self.deal_index
def deal_card():
def deal_card(self):
try:
card = self.cards[self.deal_index]
card.is_available = False
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment