(maze, [xA, yA], [xB, yB])
| 17 | const logMaze = require("./logger"); |
| 18 | |
| 19 | function findShortestPathLength(maze, [xA, yA], [xB, yB]) { |
| 20 | // code goes here |
| 21 | } |
| 22 | |
| 23 | // there is a visualization tool in the completed exercise |
| 24 | // it requires you to shape your objects like I did |