The pathfinder is written in javascript it uses the BellmanFord algorithm to find the shortest path from the source to the destination. It also has some barriers to overcome and find the shortest path, if the destination is surrounded by barriers and no route exists, it doesn't travel to the destination.
- To travel to any other node in any direction it takes 1 unit of length.
- Every node is connected with two other nodes in right and down order.
- Reverse path traversal can be achieved.