Oracle Interview Question

Find optimal path through a matrix like maze with obstacles in it.

Interview Answer

Anonymous

Aug 29, 2017

Using modified BFS such that neighbours of the graph correspond to adjacent cells in matrix. Needed to code on paper.