g1301_1400.s1302_deepest_leaves_sum.readme.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
1302\. Deepest Leaves Sum
Medium
Given the `root` of a binary tree, return _the sum of values of its deepest leaves_.
**Example 1:**
![](https://assets.leetcode.com/uploads/2019/07/31/1483_ex1.png)
**Input:** root = [1,2,3,4,5,null,6,7,null,null,null,null,8]
**Output:** 15
**Example 2:**
**Input:** root = [6,7,8,2,7,1,3,9,null,1,4,null,null,null,5]
**Output:** 19
**Constraints:**
* The number of nodes in the tree is in the range [1, 104]
.
* `1 <= Node.val <= 100`