2615번 오목 문제 난이도 Silver2 알고리즘 분류 구현 브루트포스 알고리즘 풀이 public class Main { static int[] dx = { -1, 1, 0, 0, -1, 1, -1, 1 }; // |,-, \, / static int[] dy = { 0, 0, -1, 1, -1, 1, 1, -1 }; static int[][] map = new int[19][19]; static boolean check(int color, int x, int y) { return x > 18 || x 18 || y < 0 || map[x][y] != color; } static int[] count(int color, int x, int y, int idx) { int ansX =..