首页 > 编程语言 > 详细

leetcode559 Python3 128ms N叉树的最大深度

时间:2018-07-28 10:10:01      阅读:148      评论:0      收藏:0      [点我收藏+]
"""
# Definition for a Node.
class Node(object):
    def __init__(self, val, children):
        self.val = val
        self.children = children
"""
class Solution(object):
    def maxDepth(self, root):
        """
        :type root: Node
        :rtype: int
        """
        if not root:
            return 0
        if not root.children:
            return 1
        return 1 + max(list(map(self.maxDepth, root.children)))
        

leetcode559 Python3 128ms N叉树的最大深度

原文:https://www.cnblogs.com/theodoric008/p/9380391.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!