def test_9(self): mas = [ [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], ] self.assertEqual(is_zero_in_mas(mas), False)
def test_11(self): mas = [ [0, 1, 0, 1], [1, 1, 1, 1], [1, 1, 0, 1], [1, 0, 1, 1], ] self.assertEqual(is_zero_in_mas(mas), True)
def test_10(self): a = [] mas = [ [1, 1, 1, 1], [1, 0, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], ] self.assertEqual(is_zero_in_mas(mas), True)