-
Notifications
You must be signed in to change notification settings - Fork 90
/
Maximal_Square.js
66 lines (52 loc) · 1.3 KB
/
Maximal_Square.js
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
66
/*
Maximal Square
https://leetcode.com/problems/maximal-square/
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.
Example:
Input:
1 0 1 0 0
1 0 1 1 1
1 1 1 1 1
1 0 0 1 0
Output: 4
*/
/**
* @param {character[][]} matrix
* @return {number}
*/
var maximalSquare = function (matrix) {
var maxSquare = 0;
for (var i = 0; i < matrix.length; i++) {
for (var j = 0; j < matrix[0].length; j++) {
if (matrix[i][j] === "1") {
// found a 1
const currentMaxSideLength = getCurrentMaxSideLength(matrix, i, j);
if (currentMaxSideLength ** 2 > maxSquare)
maxSquare = currentMaxSideLength ** 2;
}
}
}
return maxSquare;
};
var getCurrentMaxSideLength = function (matrix, i, j) {
var max = 1;
while (i + max < matrix.length && j + max < matrix[0].length) {
var lastRow = i + max;
var lastCol = j + max;
// check last column
var iterRow = i;
while (iterRow <= lastRow) {
if (matrix[iterRow][lastCol] === "0") return max;
iterRow++;
}
// check last row
var iterCol = j;
while (iterCol <= lastCol) {
if (matrix[lastRow][iterCol] === "0") return max;
iterCol++;
}
max++;
}
return max;
};
module.exports.maximalSquare = maximalSquare;