We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Revert "Attempt to organize wiki into file structure" This reverts commit b53dd7f61a13f715c946e79344324902b723415c.
Attempt to organize wiki into file structure
Updated Topological Sort (markdown)
The code traverses all nodes in graph.keys() irrespective of its presence in visited set. Modified the code to include the if condition "if node not in visited:" in top_sort method's for loop to perform dfs only if the node has not already been traversed.
Created Topological Sort (markdown)