leetcode 104 Maximum Deep of Binary Tree(이차 트리의 최대 깊이)python3 귀속(비꼬리 귀속)

모든 Leetcode 제목이 비정기적으로 Github에 모였습니다. 여러분의 비판과 지적, 토론을 환영합니다.
# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None

class Solution:
    def maxDepth(self, root):
        """
        :type root: TreeNode
        :rtype: int
        """
   
        #  , , , , 。
        #  

        if not root : return 0
        return max(self.maxDepth(root.left), self.maxDepth(root.right))+1

        

모든 Leetcode 제목이 비정기적으로 Github에 모였습니다. 여러분의 비판과 지적, 토론을 환영합니다.

좋은 웹페이지 즐겨찾기