Question: public class MazeSolver { static char[][] maze; static int m, n; // dimensions of the maze; row and col /* TODO: setMaze - sets up
public class MazeSolver { static char[][] maze; static int m, n; // dimensions of the maze; row and col /* TODO: setMaze - sets up the board This method will take in a String, file, which is the path of the file we want to look at. Using BufferedReader and FileReader, write this method so that it sets the rows, m, and columns, n, to the first line of input. Then it fills the maze with the maze from the file. */ public static void setMaze(String file) throws IOException { Fill here please~~~ }
example txt file1:
6 6 S..... ###.## ###.## #..... #.#### ....G#
example txt file2:
7 8 S##.##.# ........ #.####.# #.####.# #.####.. #.#..#.# #..G...#
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
