Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started