-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path0463-island-perimeter.js
36 lines (33 loc) · 1.13 KB
/
0463-island-perimeter.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
/**
* 463. Island Perimeter
* https://leetcode.com/problems/island-perimeter/
* Difficulty: Medium
*
* You are given row x col grid representing a map where grid[i][j] = 1 represents land and
* grid[i][j] = 0 represents water.
*
* Grid cells are connected horizontally/vertically (not diagonally). The grid is completely
* surrounded by water, and there is exactly one island (i.e., one or more connected land cells).
*
* The island doesn't have "lakes", meaning the water inside isn't connected to the water around
* the island. One cell is a square with side length 1. The grid is rectangular, width and height
* don't exceed 100. Determine the perimeter of the island.
*/
/**
* @param {number[][]} grid
* @return {number}
*/
var islandPerimeter = function(grid) {
let island = 0;
let adjacent = 0;
for (let i = 0; i < grid.length; i++) {
for (let j = 0; j < grid[0].length; j++) {
if (grid[i][j] === 1) {
island++;
if (i + 1 < grid.length && grid[i + 1][j] === 1) adjacent++;
if (j + 1 < grid[0].length && grid[i][j + 1] === 1) adjacent++;
}
}
}
return island * 4 - adjacent * 2;
};