We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a42bb commit be82ae4Copy full SHA for be82ae4
data_structures/disjoint_set/union_find.py
@@ -11,6 +11,7 @@
11
Author: Michael Alexander Montoya
12
"""
13
14
+
15
class UnionFind:
16
def __init__(self, size):
17
self.parent = list(range(size))
0 commit comments