참고하여 코드 작성해봅시다. https://tmdrl5779.tistory.com/216 [프로그래머스] 게임 맵 최단거리(Java 자바) https://programmers.co.kr/learn/courses/30/lessons/1844 코딩테스트 연습 - 게임 맵 최단거리 [[1,0,1,1,1],[1,0,1,0,1],[1,0,1,1,1],[1,1,1,0,1],[0,0,0,0,1]] 11 [[1,0,1,1,1],[1,0,1,0,1],[1,0,1,1,1],[1,1,1,0,0],[0,0,0,0,1]] -1 programmers.co.kr 문 tmdrl5779.tistory.com BFS를 공부하고 있다. Breadth Frirst Search 너비 우선 탐색 쉽지 않다. ;. 추천을 받아 바킹 독님의 BF..