structy-logo
Pythonpython3logo
Course Contents
Layout 1
Prompt
Editor
Terminal
sign in
problem
approach
walkthrough
solution
add to favoritessettings

tree sum

Write a function, tree_sum, that takes in the root of a binary tree that contains number values. The function should return the total sum of all values in the tree.

test_00
a = Node(3)
b = Node(11)
c = Node(4)
d = Node(4)
e = Node(-2)
f = Node(1)

a.left = b
a.right = c
b.left = d
b.right = e
c.right = f

# 3
# / \
# 11 4
# / \ \
# 4 -2 1

tree_sum(a) # -> 21
test_01
a = Node(1)
b = Node(6)
c = Node(0)
d = Node(3)
e = Node(-6)
f = Node(2)
g = Node(2)
h = Node(2)

a.left = b
a.right = c
b.left = d
b.right = e
c.right = f
e.left = g
f.right = h

# 1
# / \
# 6 0
# / \ \
# 3 -6 2
# / \
# 2 2

tree_sum(a) # -> 10
test_02
tree_sum(None) # -> 0
terminal
settings
[guest]$ 
editor — tree-sum.py
reset codesettings
# class Node:
# def __init__(self, val):
# self.val = val
# self.left = None
# self.right = None

def tree_sum(root):
pass # todo
saved