Problem 📄

Find route more faster between nodes

Example:

const origin = 'C'
const destiny = 'O'
const fasterRoute = (origin, destiny) => 'C,B,J,K,N,O'

Graph - nodes

algorithm

Solution with Dijkstra 🚀

Theory Wiki

Theory Youtube

🚀 Getting started

npm i
npm run start
npm run test