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