Skip to content

Commit 69c30d5

Browse files
committed
1254 M
1 parent da3647d commit 69c30d5

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport"
6+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>Hi^^</title>
9+
<script src="index.js"></script>
10+
</head>
11+
<body>
12+
<h1>Check console pls^^</h1>
13+
</body>
14+
</html>HTML
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
Given a 2D grid consists of 0s (land) and 1s (water). An island is a maximal 4-directionally connected group of 0s and a closed island is an island totally (all left, top, right, bottom) surrounded by 1s.
3+
4+
Return the number of closed islands.
5+
*/
6+
var closedIsland = function (grid) {
7+
let result = 0;
8+
let rows = grid.length;
9+
let cols = grid[0].length;
10+
if (cols < 3 || rows < 3) return 0;
11+
let checkNeighbours = (i, j) => {
12+
if (i < 0 || i >= rows || j < 0 || j >= cols) {
13+
return false;
14+
}
15+
if (grid[i][j] === 1) {
16+
return true;
17+
}
18+
grid[i][j] = 1;
19+
let left = checkNeighbours(i, j - 1);
20+
let right = checkNeighbours(i, j + 1);
21+
let top = checkNeighbours(i - 1, j);
22+
let bottom = checkNeighbours(i + 1, j);
23+
return left && right && top && bottom;
24+
}
25+
26+
for (let i = 1; i < rows - 1; i++) {
27+
for (let j = 1; j < cols - 1; j++) {
28+
if (grid[i][j] === 0) {
29+
result += checkNeighbours(i, j);
30+
}
31+
}
32+
}
33+
return result;
34+
};
35+
36+
37+
console.log(closedIsland([[1,1,1,1,1,1,1,0],[1,0,0,0,0,1,1,0],[1,0,1,0,1,1,1,0],[1,0,0,0,0,1,0,1],[1,1,1,1,1,1,1,0]]));
38+
console.log(closedIsland([[0,0,1,0,0],[0,1,0,1,0],[0,1,1,1,0]]));

0 commit comments

Comments
 (0)