We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b4bd20 commit aad2a7dCopy full SHA for aad2a7d
1 file changed
graph/kruskalsMST.py
@@ -37,7 +37,7 @@ def kruskals(self):
37
mst.append([u, v, w])
38
self.union(parent, x, y)
39
else:
40
- # don't do anything as this u,v is already in mast
+ # don't do anything as this u,v is already in mst
41
pass
42
return mst
43
0 commit comments