g0401_0500.s0463_island_perimeter.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0401_0500.s0463_island_perimeter;
// #Easy #Array #Depth_First_Search #Breadth_First_Search #Matrix
public class Solution {
public int islandPerimeter(int[][] grid) {
int islands = 0;
int neighbours = 0;
for (int i = 0; i < grid.length; i++) {
for (int j = 0; j < grid[i].length; j++) {
if (grid[i][j] == 1) {
islands++;
if (i < grid.length - 1 && grid[i + 1][j] == 1) {
neighbours++;
}
if (j < grid[i].length - 1 && grid[i][j + 1] == 1) {
neighbours++;
}
}
}
}
return 4 * islands - 2 * neighbours;
}
}