Develop an algorithm to count islands in a grid. The question can be found on leetcode: https://leetcode.com/problems/number-of-islands/description/
Anónimo
Iterate through the grid and when you find an island, perform a DFS for all connected islands.