Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b5a2570

Browse files
committedOct 27, 2024
Fixed
1 parent 3ceccfb commit b5a2570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎sorts/topological_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ def topological_sort(start: str, visited: list[str], sort: list[str]) -> list[st
1919
if __name__ == "__main__":
2020
sort = topological_sort("a", [], [])
2121
sort.reverse() #Top down approach
22-
print(sort)
22+
print(sort)

0 commit comments

Comments
 (0)
Please sign in to comment.