diff --git a/sorts/topological_sort.py b/sorts/topological_sort.py index 7613d07b2..e5bdc75e9 100644 --- a/sorts/topological_sort.py +++ b/sorts/topological_sort.py @@ -19,4 +19,4 @@ def topological_sort(start: str, visited: list[str], sort: list[str]) -> list[st if __name__ == "__main__": sort = topological_sort("a", [], []) sort.reverse() #Top down approach - print(sort) + print(sort) \ No newline at end of file