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