Maze 미로찾기 현재 위치에서 출구까지 가는 경로가 있으려면 1) 현재 위치가 출구이거나 혹은 2) 이웃한 셀들 중 하나에서 현재 위치를 지나지 않고 출구까지 가는 경로가 있거나 boolean findPath(x,y) if (x,y) is the exit return true: else for each eighbouring cell (x', y') of (x, y) do if (x', y') is on the pathway if findPath(x', y') return true; else false; } boolean findPath(x,y) if (x,y) is the exit return true: else mark (x, y) as a visited cell; for each eighbourin..