Your question is Sum Integers in a Tree. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
ShipBob may represent a fulfillment hierarchy as a tree of integer-valued nodes. Given the root of an arbitrary n-ary tree, recursively calculate the sum of every node's value.
A tree is represented as nested dictionaries. Each node has an integer value and a children array containing zero or more child nodes. An empty tree is represented by None and has a sum of 0.
Implement sum_tree(root):
root, either None or a dictionary with the shape {"value": int, "children": list[node]}.value field for every node reachable from root.def sum_tree(root):