ricefryegg
Results
2
issues of
ricefryegg
Change from using different way to get suit value than `rank_value` ```py suit_values = dict(spades=3, hearts=2, diamonds=1, clubs=0) def spades_high(card): rank_value = FrenchDeck.ranks.index(card.rank) return rank_value * len(suit_values) + suit_values[card.suit] ```...