-
[Leetcode] 200. Number of Islands (In Python)[Python] 파이썬/파이썬 알고리즘 인터뷰 2021. 12. 13. 23:58
코드들은 https://github.com/Eastar-DS/Python/tree/main/Interview 에도 있습니다
땅은1, 물은0으로 표현되는 grid에서 섬갯수를 새는문제.
DFS를 이용해 구현.
코드들은 https://github.com/Eastar-DS/Python/tree/main/Interview 에도 있습니다
땅은1, 물은0으로 표현되는 grid에서 섬갯수를 새는문제.
DFS를 이용해 구현.