Skip to content

Commit 00458c7

Browse files
author
Jinbeom
committed
Fix Set Matrix Zeroes
1 parent 74bfb9f commit 00458c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

set-matrix-zeroes/kayden.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def setZeroes(self, matrix: List[List[int]]) -> None:
2020

2121
for col in cols:
2222
for i in range(m):
23-
matrix[i][col] = 0
23+
matrix[i][col] = 0

0 commit comments

Comments
 (0)