☑️ 문제: 단지번호붙이기https://www.acmicpc.net/problem/2667 ☑️ Code: DFSimport java.util.*;public class solution { static int N; static boolean[][] empty; static boolean[][] visited; static int complexCount; static int[] houseCount; static class Point { int row, col; Point(int row, int col) { this.row = row; this.col = col; } } public sta..