MCPcopy 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
12def MakeSet(x):
13 x.parent = x
14 x.rank = 0
15
16def Union(x, y):
17 xRoot = Find(x)

Callers 1

recipe-577225.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected