Question d’entretien chez 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/

Réponse à la question d'entretien

Utilisateur anonyme

15 nov. 2017

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