Re: [閒聊] 每日leetcode

作者: sustainer123 (caster)   2024-04-14 16:15:36
https://leetcode.com/problems/sum-of-left-leaves
404. Sum of Left Leaves
求左子葉和
Python Code:
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def sumOfLeftLeaves(self, root: Optional[TreeNode]) -> int:
result = 0
def dfs(node):
nonlocal result
if not node:
return
if node.left and not node.left.left and not node.left.right:
result += node.left.val
dfs(node.left)
dfs(node.right)
dfs(root)
return result
寫得好醜 等等看一下解答
然後昨天hard還沒寫 哇哇嗚嗚嗚
作者: wwndbk (黑人問號)   2023-04-14 16:15:00
大師
作者: sustainer123 (caster)   2024-04-14 16:16:00
我是ez守門員
作者: SecondRun (雨夜琴聲)   2024-04-14 16:18:00
大師

Links booklink

Contact Us: admin [ a t ] ucptt.com