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