Skip to content

Commit d150991

Browse files
committed
restore default maze
1 parent d13460d commit d150991

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

java2/dsa/recursion/maze/MazeSolver.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ public static boolean walk(
6262
private static char[][] getMaze() {
6363
char[][] maze = {
6464
new char[] {'#', '#', '#', '#', '#', '#', '#'},
65-
new char[] {' ', ' ', ' ', ' ', '#', ' ', 'E'},
66-
new char[] {' ', '#', '#', ' ', ' ', ' ', '#'},
67-
new char[] {' ', ' ', ' ', '#', '#', '#', '#'},
65+
new char[] {'#', ' ', ' ', ' ', '#', ' ', 'E'},
66+
new char[] {'#', ' ', '#', ' ', ' ', ' ', '#'},
67+
new char[] {'#', ' ', ' ', '#', '#', '#', '#'},
6868
new char[] {'#', '#', ' ', '#', '#', '#', '#'},
69-
new char[] {'#', ' ', '#', '#', '#', '#', '#'},
69+
new char[] {'#', ' ', ' ', '#', '#', '#', '#'},
7070
new char[] {'#', 'S', '#', '#', '#', '#', '#'}
7171
};
7272
return maze;

0 commit comments

Comments
 (0)