Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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