Пример #1
0
 def test_poker_example_61(self):
     tk1 = ["6S", "KH", "5D", "5C", "5S"]
     actual = poker.max_three_of_a_kind(tk1)
     expected = ["5H"]
     self.assertEqual(actual, expected)
Пример #2
0
 def test_poker_example_57(self):
     fh = ["5S", "5H", "5D", "7C", "7S"]
     actual = poker.max_three_of_a_kind(fh)
     expected = ["5H"]
     self.assertEqual(actual, expected)