110. Balanced Binary TreeLeetCode Given a binary tree, determine if it is height-balanced.이진 트리(Binary Tree)가 주어졌을 때, 해당 트리가 높이 균형(Height-balanced)이 잡힌 상태인지 판별하세요. ExampleInput: root = [3,9,20,null,null,15,7]Output: trueInput: root = [1,2,2,3,3,null,null,4,4]Output: falseInput: root = [] Output: true1. 문제 요구사항 분석균형이진트리인지 묻는 문제: 노드의 높이가 2이상 차이나면 균형이진트리 조건 불충분2. 접근 전략DFS로 구현하기import java.util.*;cl..