[참고문제] : https://leetcode.com/problems/number-of-islands/ Number of Islands - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 풀이 DFS/BFS 문제이고, 연결된 구간의 갯수를 찾는 문제다. 특히나, 전형적인 문제라 BFS로 풀어보기로 했다. 생각의 흐름 - 방문 여부는 누적되도 된다. 이전에 풀었던 문제는 중복적으로 체크하면 안되었기 때문에, 다시 돌려주는 방법을 사용했지만 이번에는 중복해서 활..