leetcood學習筆記-110-平衡二叉樹

---恢復內容開始--- 題目描述:   方法一: class Solution(object): def isBalanced(self, root): """ :type root: TreeNode :rtype: bool """ if not root: return True
相關文章
相關標籤/搜索