Count islands of `'1'` cells in a 2D grid (`'0'` is water). Variant **#40**.
Example 1
Input: grid = 3x3 matrix
Output: 3
Constraints
Acceptance: 54% · Topics: graph, dfs, matrix
← All practice problems