> For the complete documentation index, see [llms.txt](https://anand-aryan.gitbook.io/leetcode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://anand-aryan.gitbook.io/leetcode/200.-number-of-islands.md).

# 200. Number of Islands

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: 11110110101100000000 Answer: 1 Example 2: 11000110000010000011 Answer: 3

Credits:Special thanks to @mithmatt for adding this problem and creating all test cases.

## Solution <a href="#solution" id="solution"></a>

```java
public class Solution {
    public int numIslands(char[][] grid) {

        int result = 0;
        int m = grid.length;
                if (m == 0) return 0;

        int n = grid[0].length;

        boolean[][] visited = new boolean[m][n];

        for(int i = 0; i < m; i ++) {
            for(int j = 0; j < n; j ++) {
                if (grid[i][j] == '1' && !visited[i][j]) {
                    result ++;
                    dfs(grid, visited, i,j,m,n);
                }
            }
        }

        return result;

    }

    public void dfs(char[][] grid, boolean[][] visited, int x, int y, int m, int n) {
        visited[x][y] = true;

        if (isValid(x + 1, y, m, n) && !visited[x + 1][y] && grid[x + 1][y] == '1') {
            dfs(grid, visited, x + 1, y, m, n);
        }

        if (isValid(x - 1, y, m, n) && !visited[x - 1][y] && grid[x - 1][y] == '1') {
            dfs(grid, visited, x - 1, y, m, n);
        }

        if (isValid(x, y + 1, m, n) && !visited[x][y + 1] && grid[x][y + 1] == '1') {
            dfs(grid, visited, x, y + 1, m, n);
        }

        if (isValid(x, y - 1, m, n) && !visited[x][y - 1] && grid[x][y - 1] == '1') {
            dfs(grid, visited, x, y - 1, m, n);
        }
    }

    public boolean isValid(int x, int y, int m, int n) {
        return x >= 0 && x <= m - 1 && y >= 0 && y <= n - 1;
    }
}
```
