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