Return the height of a node, height is sum of each branch.
(self)
| 22 | return self.left.get_cluster_elements() + self.right.get_cluster_elements() |
| 23 | |
| 24 | def get_height(self): |
| 25 | """ Return the height of a node, |
| 26 | height is sum of each branch. """ |
| 27 | return self.left.get_height() + self.right.get_height() |
| 28 | |
| 29 | def get_depth(self): |
| 30 | """ Return the depth of a node, depth is |
no outgoing calls
no test coverage detected