Skip to content

Instantly share code, notes, and snippets.

@arindam89
Created July 14, 2020 11:24
Show Gist options
  • Save arindam89/28a55725f4bb927204073eb0cae27ae9 to your computer and use it in GitHub Desktop.
Save arindam89/28a55725f4bb927204073eb0cae27ae9 to your computer and use it in GitHub Desktop.
DS Problem 1

Number of Islands

Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume all four edges of the grid are all surrounded by water.

Example 1

Input: grid = [
  ["1","1","1","1","0"],
  ["1","1","0","1","0"],
  ["1","1","0","0","0"],
  ["0","0","0","0","0"]
]
Output: 1

Example 2

Input: grid = [
  ["1","1","0","0","0"],
  ["1","1","0","0","0"],
  ["0","0","1","0","0"],
  ["0","0","0","1","1"]
]
Output: 3

Function Signature

class Solution {
    public int numIslands(char[][] grid) {
        
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment