Codility: TreeHeight
Sep 19, 2021
Test Page: https://app.codility.com/programmers/trainings/4/tree_height/
Solution
Explains
- On the first node, fire the ‘calculate’ method, and it goes to repeat until the child node hasn’t any child node of itself.
- On the progress, the ‘max’ variable is contained on the ‘calculate’ method, and it is going to be incremented when it has any child.
- The max parameter is received as ‘inout’ parameter, so when it has been updated, the change is not saved local on the method, it’s going to be updated on the top (at the solution method)