forked from LeetCode-in-Python/LeetCode-in-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution0073.py
More file actions
50 lines (42 loc) · 1.5 KB
/
Solution0073.py
File metadata and controls
50 lines (42 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table #Matrix
# #Udemy_2D_Arrays/Matrix #Top_Interview_150_Matrix #Big_O_Time_O(m*n)_Space_O(1)
# #2025_07_24_Time_3_ms_(71.07%)_Space_18.35_MB_(78.72%)
from typing import List
class Solution:
def setZeroes(self, matrix: List[List[int]]) -> None:
"""
Do not return anything, modify matrix in-place instead.
"""
m = len(matrix)
n = len(matrix[0])
row0 = False
col0 = False
# Check if 0th column needs to be marked all 0s in future
for i in range(m):
if matrix[i][0] == 0:
col0 = True
break
# Check if 0th row needs to be marked all 0s in future
for j in range(n):
if matrix[0][j] == 0:
row0 = True
break
# Store the signals in 0th row and column
for i in range(1, m):
for j in range(1, n):
if matrix[i][j] == 0:
matrix[i][0] = 0
matrix[0][j] = 0
# Mark 0 for all cells based on signal from 0th row and 0th column
for i in range(1, m):
for j in range(1, n):
if matrix[i][0] == 0 or matrix[0][j] == 0:
matrix[i][j] = 0
# Set 0th column
if col0:
for i in range(m):
matrix[i][0] = 0
# Set 0th row
if row0:
for j in range(n):
matrix[0][j] = 0