Google interview question

Given a maze, represented as a matrix, and the initial and final points write an algorithm to solve this.

Interview Answers

Anonymous

19 Mar 2015

I tried to solve it using a breadth first search but I couldn't finish write the algorithm, I wasn't very trained at that occasion.

Anonymous

11 May 2015

Maybe you could use Dijkstra's shortest path algorithm.

Anonymous

13 Jan 2016

Both BFS and Dijkstra should work in this case because the edges doesn't have a weight.