Guest User

Untitled

a guest
Oct 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def getHeight(root):
  2. if not root: return 0
  3.  
  4. left = getHeight(root.left)
  5. right = getHeight(root.right)
  6. return max(left, right) + 1
Add Comment
Please, Sign In to add comment