mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-02 14:56:27 -04:00
Update README.md
This commit is contained in:
parent
09b98e3740
commit
4002609137
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ def dfs(graph, v, discovered):
|
|||
print(v, end=' ')
|
||||
|
||||
for u in graph.adj_list[v]:
|
||||
if not discovered[u]: #
|
||||
if not discovered[u]:
|
||||
dfs(graph, u, discovered)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue