https://leetcode.com/problems/surrounded-regions/description Q. 외부 경계에 접하지 않고, x 에 둘러싸인 영역을 "surrounded"라고 표현할 때, 이 surrounded된 영역의 O를 모두 X로 변환하라. Solution. 우선 O로 연결된 영역을 방문관리를 하면서 찾는다. 다만, 이때 외부에 걸친 영역이 존재한다면, surrounded되지 않았고, surrounded되었다면 이 영역의 O를 X로 변경한다. 코드 더보기void BFS(vector>& board, int ix, int iy, vector& vVisit){ int H = board.size(); int W = board[0].size(); queue qB..