문제 https://programmers.co.kr/learn/courses/30/lessons/1829 코딩테스트 연습 - 카카오프렌즈 컬러링북 6 4 [[1, 1, 1, 0], [1, 2, 2, 0], [1, 0, 0, 1], [0, 0, 0, 1], [0, 0, 0, 3], [0, 0, 0, 3]] [4, 5] programmers.co.kr 내 풀이 import java.util.LinkedList; import java.util.Queue; class Solution { public static int[][] arrow = {{-1, 0}, {0, 1}, {1, 0}, {0, -1}}; public int[] solution(int m, int n, int[][] picture) { int[] ..