Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
function
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
findPath
Function · 0.70
Tested by
no test coverage detected