110. Balanced Binary Tree

Easy

Problem:

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

https://leetcode.com/problems/balanced-binary-tree/arrow-up-right

Solution:

chevron-rightA solution without using global variable resulthashtag

Last updated