We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da7c95e commit 07c21eeCopy full SHA for 07c21ee
graphs/dfs.py
@@ -43,4 +43,4 @@ def depth_first_search(graph: Dict, start: str) -> Set[int]:
43
}
44
45
if __name__ == "__main__":
46
- print(dfs(G, "A"))
+ print(depth_first_search(G, "A"))
0 commit comments