コード例 #1
0
 def test_unite2(self):
     t = Tables([1, 1, 1, 1])
     t.unite(2, 3)
     assert 2 == t.find(3)
     t.unite(1, 2)
     assert 1 == t.find(3)
コード例 #2
0
 def test_find(self):
     t = Tables([1, 1, 1, 1])
     assert 3 == t.find(3)