Question: Write a method mazeSolver that: Receives a 2D char array as a parameter. Starts at location [0][0] Travels through the array to find the index
Write a method mazeSolver that: Receives a 2D char array as a parameter. Starts at location [0][0] Travels through the array to find the index of the "way out" using the rules given below. Returns the "way out" column index. Rules: If the location to your right contains ' ' move right. If the location to your right contains '|' move down. If there are no more locations to your right, move down. You have found the "way out" when you reach a location in the bottom row.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
