Island Perimeter (Round 3, LC 463 :)
You are given row Γ 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.
Complete the function islandPerimeter in the editor.
islandPerimeter has the following parameter:
int[][] grid: a 2D array of integers
Returns
int: the perimeter of the island
πͺ Wallz carries all! π
1Example 1
2Example 2
3Example 3
Constraints
Limits and guarantees your solution can rely on.
row == grid.lengthcol == grid[i].length1 <= row, col <= 100grid[i][j]is0or1.- There is exactly one island in grid.