-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path938.py
36 lines (32 loc) · 1005 Bytes
/
938.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Range Sum of BST
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
# def rangeSum(acc, node, L, R):
# if node is None:
# return acc
# elif node.val < L or node.val > R:
# acc = rangeSum(acc, node.left, L, R)
# acc = rangeSum(acc, node.right, L, R)
# return acc
# else:
# acc = rangeSum(acc, node.left, L, R)
# acc = rangeSum(acc, node.right, L, R)
# return acc + node.val
class Solution:
def rangeSumBST(self, root: TreeNode, L: int, R: int) -> int:
# return rangeSum(0, root, L, R)
def dfs(node):
if node:
if L <= node.val <= R:
self.ans += node.val
if L < node.val:
dfs(node.left)
if node.val < R:
dfs(node.right)
self.ans = 0
dfs(root)
return self.ans