Sum of the Deepest Nodes
Given a binary tree root
, find the sum of the deepest node values.
Constraints
n ≤ 100,000
wheren
is the number of nodes inroot
https://binarysearch.com/problems/Sum-of-the-Deepest-Nodes
Examples
Example 1
Input
- root =
Output
- answer =
6
Explanation
Since values 4
and 2
are deepest.
Example 2
Input
- root =
Output
- answer =
3
Explanation
Since 3
is deepest.
Leave a comment