From b430c3342d57126d895c2b95a35b58e9c256d4b1 Mon Sep 17 00:00:00 2001 From: lor-engel <83264925+lor-engel@users.noreply.github.com> Date: Sat, 16 Oct 2021 21:00:14 -0700 Subject: [PATCH] Update README.md --- solutions/system_design/social_graph/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/system_design/social_graph/README.md b/solutions/system_design/social_graph/README.md index 517dde49..da6c425d 100644 --- a/solutions/system_design/social_graph/README.md +++ b/solutions/system_design/social_graph/README.md @@ -106,7 +106,7 @@ c = Obj("c") d = Obj("d") a.adj_nodes = {"b":b, "c":c} b.adj_nodes = {"a":a} -c.adj_nodes = {"a":a,"d":d} +c.adj_nodes = {"a":a, "d":d} d.adj_nodes = {"c":c} print(obj.shortest_path(a, d)) """