MediumGraph· 64% acceptance
#923

Number of Islands 33

Medium

Count islands of `'1'` cells in a 2D grid (`'0'` is water). Variant **#33**.

Example 1

Input: grid = 4x6 matrix

Output: 8

Constraints

  • m == grid.length
  • n == grid[i].length

Acceptance: 64% · Topics: graph, dfs, matrix

numIslands

← All practice problems