-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoeplitz_matrix.py
41 lines (28 loc) · 946 Bytes
/
toeplitz_matrix.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
'''
Given a two-dimensional matrix of integers
matrix, determine whether it's a Toeplitz matrix. A Toeplitz
is one where every diagonal descending from left to right has the same value.
'''
class Solution:
def solve(self, matrix):
m = matrix
for i in range(len(m)):
for j in range(len(m[i])):
cell = m[i][j]
x = i
y = j
while x < len(m)-1 and y < len(m[0])-1:
x+=1
y+=1
next_cell = m[x][y]
if next_cell != cell:
return False
return True
#another
class Solution:
def solve(self, matrix):
for row in range(1, len(matrix)):
for col in range(1, len(matrix[0])):
if matrix[row][col] != matrix[row - 1][col - 1]:
return False
return True