Advertisement
MCreeper12731

Untitled

Aug 6th, 2022
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. public int islandPerimeter(int[][] grid) {
  2.     int[][] neighbors = {
  3.             {-1, 0},
  4.             {0, -1},
  5.             {0, 1},
  6.             {1, 0}
  7.     };
  8.     int perimeter = 0;
  9.     for (int x = 0; x < grid.length; x++) {
  10.         for (int y = 0; y < grid[x].length; y++) {
  11.             if (grid[x][y] == 0) continue;
  12.             for (int[] neighbor : neighbors) {
  13.                 try {
  14.                     if (grid[x + neighbor[0]][y + neighbor[1]] == 0) perimeter++;
  15.                 } catch (ArrayIndexOutOfBoundsException exception) {
  16.                     perimeter++;
  17.                 }
  18.             }
  19.         }
  20.     }
  21.     return perimeter;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement