Recursion
Recursion Approaches
Top down approach
return specific value for null node
update the answer if needed // answer <-- params
left_ans = top_down(root.left, left_params) // left_params <-- root.val, params
right_ans = top_down(root.right, right_par...
shyamkunda.hashnode.dev4 min read