softeer 썸네일형 리스트형 [Softeer] 장애물 인식 프로그램 (Java) Softeer 연습문제를 담을 Set을 선택해주세요. 취소 확인 softeer.ai import java.util.*; import java.io.*; public class Main { static class Point { int x; int y; Point(int x, int y) { this.x = x; this.y = y; } } static int N; static char[][] map; static int[][] visited; static int cnt; static int[] dx = { 1, 0, -1, 0 }, dy = { 0, 1, 0, -1 }; static List blocks; private static void solution() { blocks = new ArrayList(.. 더보기 이전 1 다음