Skip to content

Commit 607a993

Browse files
Code backup
1 parent 7a85256 commit 607a993

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sorts/topological_sort.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
vertices: list[str] = ["a", "b", "c", "d", "e"]
1616

1717

18-
1918
def topological_sort(start: str, visited: list[str], sort: list[str]) -> list[str]:
2019
"""Perform topological sort on a directed acyclic graph."""
2120
current = start

0 commit comments

Comments
 (0)