Pregunta de entrevista de Chatham Financial

Develop an algorithm to count islands in a grid. The question can be found on leetcode: https://leetcode.com/problems/number-of-islands/description/

Respuesta de la entrevista

Anónimo

15 de nov de 2017

Iterate through the grid and when you find an island, perform a DFS for all connected islands.