forked from LeetCode-in-Go/LeetCode-in-Go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.go
61 lines (53 loc) · 1.16 KB
/
solution.go
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
51
52
53
54
55
56
57
58
59
60
61
package s0073_set_matrix_zeroes
// #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)
// #2024_03_14_Time_8_ms_(83.64%)_Space_5.9_MB_(75.58%)
func setZeroes(matrix [][]int) {
m := len(matrix)
n := len(matrix[0])
row0 := false
col0 := false
// Check if 0th col needs to be marked all 0s in future
for _, row := range matrix {
if row[0] == 0 {
col0 = true
break
}
}
// Check if 0th row needs to be marked all 0s in future
for i := 0; i < n; i++ {
if matrix[0][i] == 0 {
row0 = true
break
}
}
// Store the signals in 0th row and column
for i := 1; i < m; i++ {
for j := 1; j < n; j++ {
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 := 1; i < m; i++ {
for j := 1; j < n; j++ {
if matrix[i][0] == 0 || matrix[0][j] == 0 {
matrix[i][j] = 0
}
}
}
// Set 0th column
for i := 0; i < m; i++ {
if col0 {
matrix[i][0] = 0
}
}
// Set 0th row
for i := 0; i < n; i++ {
if row0 {
matrix[0][i] = 0
}
}
}