Add notes on the topic

This commit is contained in:
2026-08-20 21:53:08 -04:00
parent 8d50900eaa
commit 5920408271
4 changed files with 33 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ classes = {
}
def topological_sort(adjacency_list: dict[str, set[str]]):
# return the sorted ordering
# return the sorted ordering ['CPSC 230', 'ENGR 101', 'CPSC 231', ...]
return []
print(topological_sort(classes))