We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c73480 commit 720e811Copy full SHA for 720e811
Python/chapter01/1.8 - Zero Matrix/miguel_1.8_sol.py
@@ -124,6 +124,48 @@ def setUp(self):
124
[1, 2],
125
[3, 4]
126
]
127
+ ),
128
+ (
129
+ [
130
+ [0, 1, 2],
131
+ [0, 3, 4],
132
+ [0, 5, 6],
133
+ [0, 7, 8]
134
+ ],
135
136
+ [0, 0, 0],
137
138
139
+ [0, 0, 0]
140
+ ]
141
142
143
144
+ [1, 2, 3, 4],
145
+ [5, 6, 0, 8],
146
+ [9, 10, 0, 12],
147
+ [13, 14, 15, 16]
148
149
150
+ [1, 2, 0, 4],
151
+ [0, 0, 0, 0],
152
153
+ [13, 14, 0, 16]
154
155
156
157
158
159
160
+ [5, 6, 7, 8],
161
+ [9, 10, 11, 12]
162
163
164
165
166
167
+ [0, 0, 0, 0]
168
169
)
170
171
0 commit comments