-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path076. Set Matrix Zeros.py
65 lines (48 loc) · 1.28 KB
/
076. Set Matrix Zeros.py
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
62
63
64
65
# Set Matrix Zeros
"""
Problem Description
Given a matrix, A of size M x N of 0s and 1s. If an element is 0, set its entire row and column to 0.
Note: This will be evaluated on the extra memory used. Try to minimize the space and time complexity.
Input Format:
The first and the only argument of input contains a 2-d integer matrix, A, of size M x N.
Output Format:
Return a 2-d matrix that satisfies the given conditions.
Constraints:
1 <= N, M <= 1000
0 <= A[i][j] <= 1
Examples:
Input 1:
[ [1, 0, 1],
[1, 1, 1],
[1, 1, 1] ]
Output 1:
[ [0, 0, 0],
[1, 0, 1],
[1, 0, 1] ]
Input 2:
[ [1, 0, 1],
[1, 1, 1],
[1, 0, 1] ]
Output 2:
[ [0, 0, 0],
[1, 0, 1],
[0, 0, 0] ]
"""
class Solution:
# @param A : list of list of integers
# @return the same list modified
def setZeroes(self, A):
rows = set()
cols = set()
for i in range(len(A)):
for j in range(len(A[0])):
if A[i][j]==0:
rows.add(i)
cols.add(j)
for i in rows:
for j in range(len(A[0])):
A[i][j] = 0
for j in cols:
for i in range(len(A)):
A[i][j] = 0
return A