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