-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path221. Maximal Square.ts
43 lines (36 loc) · 996 Bytes
/
221. Maximal Square.ts
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
{
/*
Runtime: 235 ms, faster than 27.85% of TypeScript online submissions for Maximal Square.
Memory Usage: 45.5 MB, less than 70.89% of TypeScript online submissions for Maximal Square.
*/
const isSquare = (matrix: string[][], size: number, x: number, y: number): boolean => {
for (let i = x; i < x + size; i++) {
for (let j = y; j < y + size; j++) {
if (matrix[i][j] === "0") {
return false;
}
}
}
return true;
}
const maximalSquare = (matrix: string[][]): number => {
const m = matrix.length;
const n = matrix[0].length;
let size = 1;
outer: while (true) {
for (let i = 0; i < m - size + 1; i++) {
for (let j = 0; j < n - size + 1; j++) {
if (matrix[i][j] === "0") {
continue;
}
if (isSquare(matrix, size, i, j)) {
size++;
continue outer;
}
}
}
break;
}
return (size - 1) ** 2;
};
}