Skip to content

Instantly share code, notes, and snippets.

@AbeEstrada
Last active September 2, 2025 02:20
Show Gist options
  • Select an option

  • Save AbeEstrada/e38a3f9161c1435ca9ccefe45528d629 to your computer and use it in GitHub Desktop.

Select an option

Save AbeEstrada/e38a3f9161c1435ca9ccefe45528d629 to your computer and use it in GitHub Desktop.
Exercise: Height of a Binary Tree
function height(root) {
if (root === null) return -1;
return 1 + Math.max(height(root.left), height(root.right));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment