nikolayneykov92

Untitled

Jan 27th, 2020
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const findMaxHeight = (node) => !node ? 0 : findMaxHeight(Math.max(node.left, node.right) + 1);
Add Comment
Please, Sign In to add comment