MCPcopy Create free account
hub / github.com/marijnh/Eloquent-JavaScript / 22_1_pathfinding.js

File 22_1_pathfinding.js

code/solutions/22_1_pathfinding.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1function findPath(a, b) {
2 let work = [[a]];
3 for (let path of work) {
4 let end = path[path.length - 1];

Callers

nothing calls this directly

Calls 1

findPathFunction · 0.70

Tested by

no test coverage detected