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