Largest Tree Sum Path
Given a binary tree root
, return the largest sum of any path between any two nodes.
Constraints
n ≤ 100,000
wheren
is the number of nodes inroot
https://binarysearch.com/problems/Largest-Tree-Sum-Path
Examples
Example 1
Input
- root =
Output
- answer =
31
Explanation
The largest sum path is: [8, 7, 4, 12]
Leave a comment