Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ActiveState/code
/ MakeSet
Function
MakeSet
recipes/Python/577225_UnionFind/recipe-577225.py:12–14 ·
view source on GitHub ↗
(x)
Source
from the content-addressed store, hash-verified
10
""
"
11
12
def
MakeSet(x):
13
x.parent = x
14
x.rank = 0
15
16
def
Union(x, y):
17
xRoot = Find(x)
Callers
1
recipe-577225.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected