We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 563681b commit 8991be0Copy full SHA for 8991be0
data_structures/disjoint_set/union_find.py
@@ -68,6 +68,7 @@ def union(self, a: int, b: int) -> bool:
68
69
if __name__ == "__main__":
70
import doctest
71
+
72
doctest.testmod()
73
74
uf = UnionFind(10)
0 commit comments