Skip to content

Commit 0f71c8b

Browse files
committed
⚡ [73] -
1 parent 738ca31 commit 0f71c8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

73/solution.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const setZeroes = (matrix) => {
2020
}
2121
}
2222

23-
coordinate = [];
23+
let coordinate = [];
2424
for (let row = 0; row < matrix.length; row++) {
2525
for (let col = 0; col < matrix[row].length; col++) {
2626
if (matrix[row][col] === 0) {

0 commit comments

Comments
 (0)