def test_equal_8(self):
     self.assertEqual(check_for_winning_category([1, 12, 13, 34, 35, 39, 1], [1, 2, 3, 4, 5, 6, 1]), -1)
 def test_equal_6(self):
     self.assertEqual(check_for_winning_category([1, 2, 3, 34, 35, 39, 1], [1, 2, 3, 4, 5, 6, 7]), 8)
 def test_equal_5(self):
     self.assertEqual(check_for_winning_category([1, 2, 3, 4, 5, 6, 0], [1, 2, 3, 4, 5, 6, 7]), 2)
 def test_equal_8(self):
     self.assertEqual(
         check_for_winning_category([1, 12, 13, 34, 35, 39, 1],
                                    [1, 2, 3, 4, 5, 6, 1]), -1)
 def test_equal_6(self):
     self.assertEqual(
         check_for_winning_category([1, 2, 3, 34, 35, 39, 1],
                                    [1, 2, 3, 4, 5, 6, 7]), 8)
 def test_equal_5(self):
     self.assertEqual(
         check_for_winning_category([1, 2, 3, 4, 5, 6, 0],
                                    [1, 2, 3, 4, 5, 6, 7]), 2)