algorithms

Repository of programs that demonstrate basic algorithms I've been learning
git clone git://git.samirparikh.com/algorithms
Log | Files | Refs | README

commit 40227efe85a06ca45965a35a4343e1df0342a8df
parent eb36e8a902d2432ae525f28f5c779d12e9bbe6ba
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Sat,  1 Jan 2022 16:43:41 +0000

fix typo

Diffstat:
Mdijkstra.pl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dijkstra.pl b/dijkstra.pl @@ -30,7 +30,7 @@ $graph{'start'}{'b'} = 2; # say "$key => $graph{'start'}{$key}"; # } -# add the rest of the ndoes and their neighbors to the graph +# add the rest of the nodes and their neighbors to the graph $graph{'a'}{'fin'} = 1; $graph{'b'}{'a'} = 3; $graph{'b'}{'fin'} = 5;