每日一道算法題--leetcode 124--二叉樹中的最大路徑和--python

【題目描述】 bash 【源代碼】 class Solution(object): def maxPathSum(self, root): """ :type root: TreeNode :rtype: int """ self.res = float('-inf') self.dfs(root) return self.r
相關文章
相關標籤/搜索