Example

January 3, 2023 ยท View on GitHub

https://leetcode.com/problems/balanced-binary-tree/description/

Given a binary tree, determine if it is height-balanced .

Example

Example 1:

e1

Input: root = [3,9,20,null,null,15,7]
Output: true

Example 2:

ex2

Input: root = [1,2,2,3,3,null,null,4,4]
Output: false

Example 3:

Input: root = []
Output: true

Constraints:

The number of nodes in the tree is in the range [0, 5000].
-$10^{4}$ <= Node.val <= $10^{4}$