(self, x)
| 37 | self._obj = [x for x in range(0, count)] |
| 38 | |
| 39 | def find(self, x): |
| 40 | if x != self._obj[x]: |
| 41 | self._obj[x] = self.find(self._obj[x]) |
| 42 | return self._obj[x] |
| 43 | else: |
| 44 | return x |
| 45 | |
| 46 | def connect(self, a, b): |
| 47 | x = self.find(a) |
no outgoing calls
no test coverage detected