Skip to content

Commit

Permalink
fix starting node position
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshRaj2717 committed Sep 16, 2024
1 parent b7250c7 commit 0e3b47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/PathFindingVisualiser/Algos/dijkstra.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default async function dijkstra() {
});

const width = allNodeStates[0].length;
const startingNode = [9, 10];
const startingNode = [9, 9];
const endingNode = [9, 40];
const startingNodeNumber = helpers.toNodeNumber(
startingNode[0],
Expand Down

0 comments on commit 0e3b47a

Please sign in to comment.