mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-06 05:45:53 +00:00
Fixed
This commit is contained in:
parent
3d3d5aad65
commit
12dde2f9e6
@ -30,7 +30,7 @@ def topological_sort(start: str, visited: list[str], sort: list[str]) -> list[st
|
||||
if neighbor not in visited:
|
||||
sort = topological_sort(neighbor, visited, sort)
|
||||
|
||||
# After visiting all neigbors, add the current node to the sorted list
|
||||
# After visiting all neighbors, add the current node to the sorted list
|
||||
sort.append(current)
|
||||
|
||||
# If there are some nodes that were not visited (disconnected components)
|
||||
|
Loading…
x
Reference in New Issue
Block a user