. [Swift] LeetCode1302 the deepest layers of the leaf nodes and | Deepest Leaves Sum

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤ micro-channel public number: Shan Wing Chi ( let_us_code)
➤ bloggers domain: https://www.zengqiang.org
➤GitHub address: https://github.com/strengthen/LeetCode
➤ original address: https://www.cnblogs.com/strengthen/p/12151658 .html
➤ If the address is not a link blog Park Yong Shan Chi, it may be crawling author of the article.
➤ text has been modified update! Click strongly recommended that the original address read! Support authors! Support the original!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

Given a binary tree, return the sum of values of its deepest leaves.
 

Example 1:

 

 

 

Input: root = [1,2,3,4,5,null,6,7,null,null,null,null,8]
Output: 15
 

Constraints:

The number of nodes in the tree is between 1 and 10^4.
The value of nodes is between 1 and 100.


Give you a binary tree, you return to the deepest layers of the leaf nodes and.

 

Example:

 

Input: root = [1,2,3,4,5, null, 6,7, null, null, null, null, 8]
output: 15
 

prompt:

The number of tree nodes between 1 and 10 ^ 4.
Value for each node between 1 and 100.

Guess you like

Origin www.cnblogs.com/strengthen/p/12151658.html