☑️ 문제: 14248번: 점프 점프https://www.acmicpc.net/problem/14248 ☑️ 핵심 Code: BFS 풀이 static void bfs() { boolean[] visited = new boolean[n]; Queue queue = new LinkedList(); visited[startIndex] = true; queue.offer(startIndex); answer = 1; while(!queue.isEmpty()) { int index = queue.poll(); int jump = stones[index]; if (..