public static void main(String[] args) throws FileNotFoundException { Maze f; f = new Maze("data3.dat", true); // true animates the maze. f.clearTerminal(); f.solve(); f.clearTerminal(); System.out.println(f); }
public static void main(String[] args) { Maze m = new Maze("data.dat", true); m.solve(); if (m.debug) { System.out.println(m.maze.length + "/" + m.maze[0].length); System.out.println(m.maze[1][1]); System.out.println(m.startx); } }