Compares the two items using default comparison
(self, i: int, j: int)
| 43 | self.arr[i], self.arr[j] = self.arr[j], self.arr[i] |
| 44 | |
| 45 | def _cmp(self, i: int, j: int) -> bool: |
| 46 | """Compares the two items using default comparison""" |
| 47 | return self.arr[i][1] < self.arr[j][1] |
| 48 | |
| 49 | def _get_valid_parent(self, i: int) -> int: |
| 50 | """ |
no outgoing calls
no test coverage detected