From b5a25700d1176b36db8be0fa6dde3d17528b9eaa Mon Sep 17 00:00:00 2001 From: VarshiniShreeV Date: Sun, 27 Oct 2024 09:23:57 +0530 Subject: [PATCH] Fixed --- sorts/topological_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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