From 352ecf98f5a8c5f80b9a562d23524e0c084eb957 Mon Sep 17 00:00:00 2001 From: gaurav101297 <57042939+gaurav101297@users.noreply.github.com> Date: Sat, 26 Oct 2019 22:44:58 +0530 Subject: [PATCH] Update topologicalsort.py --- graph/topologicalsort.py | 1 + 1 file changed, 1 insertion(+) diff --git a/graph/topologicalsort.py b/graph/topologicalsort.py index aeae012..1690163 100644 --- a/graph/topologicalsort.py +++ b/graph/topologicalsort.py @@ -1,5 +1,6 @@ #topological sort # java code https://github.com/mission-peace/interview/blob/master/src/com/interview/graph/TopologicalSort.java +#totpological sortings are not unique from graph import Graph