-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathToeplitzMatrix.java
47 lines (37 loc) · 916 Bytes
/
ToeplitzMatrix.java
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
package leetcode;
/**
* Created by nikoo28 on 9/23/18 11:41 AM
*/
class ToeplitzMatrix {
public boolean isToeplitzMatrix(int[][] matrix) {
int rows = matrix.length;
int cols = matrix[0].length;
for (int i = 0; i < rows; i++) {
int row = i;
int col = 0;
int num = matrix[row][col];
row++;
col++;
if (notSame(matrix, rows, cols, row, col, num)) return false;
}
for (int i = 0; i < cols; i++) {
int row = 0;
int col = i;
int num = matrix[row][col];
row++;
col++;
if (notSame(matrix, rows, cols, row, col, num)) return false;
}
return true;
}
private boolean notSame(int[][] matrix, int rows, int cols, int row, int col, int num) {
while (row < rows && col < cols) {
if (matrix[row][col] == num) {
row++;
col++;
} else
return true;
}
return false;
}
}