forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage-smoother.py
More file actions
25 lines (22 loc) · 762 Bytes
/
image-smoother.py
File metadata and controls
25 lines (22 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Time: O(m * n)
# Space: O(1)
class Solution(object):
def imageSmoother(self, M):
"""
:type M: List[List[int]]
:rtype: List[List[int]]
"""
def getGray(M, i, j):
total, count = 0, 0.0
for r in xrange(-1, 2):
for c in xrange(-1, 2):
ii, jj = i + r, j + c
if 0 <= ii < len(M) and 0 <= jj < len(M[0]):
total += M[ii][jj]
count += 1.0
return int(total / count)
result = [[0 for _ in xrange(len(M[0]))] for _ in xrange(len(M))]
for i in xrange(len(M)):
for j in xrange(len(M[0])):
result[i][j] = getGray(M, i, j)
return result