leetcood學習筆記-101-對稱二叉樹

題目描述: 方法一:遞歸: class Solution(object): def isSymmetric(self, root): """ :type root: TreeNode :rtype: bool """ return self.isMirror(root,root) def isMirro
相關文章
相關標籤/搜索