110. Balanced Binary Tree
Last updated
Last updated
Given a binary tree, determine if it is
height-balanced.
Example 1:
Example 2:
Example 3:
Constraints:
The number of nodes in the tree is in the range [0, 5000]
.
-104 <= Node.val <= 104
https://leetcode.com/problems/balanced-binary-tree/description/