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