Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Created January 16, 2018 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theWhiteFox/4ce38352ec4ffb894f8a3d2dc06d9625 to your computer and use it in GitHub Desktop.
Save theWhiteFox/4ce38352ec4ffb894f8a3d2dc06d9625 to your computer and use it in GitHub Desktop.
Dijkstra created by steTheWhiteFox - https://repl.it/@steTheWhiteFox/Dijkstra
const graph = {
start: {A:5, B:2},
A: {C:4, D:2},
B: {A:8, D:7},
C: {D:6, finish:3},
D: {finish:1},
finish: {}
}
console.log(graph);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment