Update README.md

pull/601/head
lor-engel 2021-10-16 21:00:14 -07:00 committed by GitHub
parent 856892d246
commit b430c3342d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ c = Obj("c")
d = Obj("d") d = Obj("d")
a.adj_nodes = {"b":b, "c":c} a.adj_nodes = {"b":b, "c":c}
b.adj_nodes = {"a":a} b.adj_nodes = {"a":a}
c.adj_nodes = {"a":a,"d":d} c.adj_nodes = {"a":a, "d":d}
d.adj_nodes = {"c":c} d.adj_nodes = {"c":c}
print(obj.shortest_path(a, d)) print(obj.shortest_path(a, d))
""" """