-
Notifications
You must be signed in to change notification settings - Fork 20.8k
Closed
Labels
Description
Problem Statement : Given the root of a Binary Tree, return the maximum path sum of any path. Path Sum is the sum of node values along a path.
Input : Root Node Object
Output : Integer value
-1000 <= Node.val <= 1000
Input : [1, 2, 3, 4]
Output : 10
Approach : I have worked on this problem before using simple recursion and would like to contribute the same to this repository. Please assign this issue to me!
siriak
