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.
a = Node(3)b = Node(11)c = Node(4)d = Node(4)e = Node(-2)f = Node(1)a.left = ba.right = cb.left = db.right = ec.right = f# 3# / \# 11 4# / \ \# 4 -2 1tree_sum(a) # -> 21
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 = ba.right = cb.left = db.right = ec.right = fe.left = gf.right = h# 1# / \# 6 0# / \ \# 3 -6 2# / \# 2 2tree_sum(a) # -> 10
tree_sum(None) # -> 0