美文网首页
2019-08-24LeetCode104. 二叉树的最大深度

2019-08-24LeetCode104. 二叉树的最大深度

作者: mztkenan | 来源:发表于2019-08-24 15:37 被阅读0次

    3min,一次过

    class Solution:
        def maxDepth(self, root: TreeNode) -> int:
            if not root:return 0
            return max(self.maxDepth(root.left),self.maxDepth(root.right))+1
    

    相关文章

      网友评论

          本文标题:2019-08-24LeetCode104. 二叉树的最大深度

          本文链接:https://www.haomeiwen.com/subject/yplqectx.html