题目
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.
An example is the root-to-leaf path 1->2->3 which represents the number 123.
Find the total sum of all root-to-leaf numbers.
Note: A leaf is a node with no children.
Example:
| 1 | Input: [1,2,3] | 
Example 2:
| 1 | Input: [4,9,0,5,1] | 
思路
DFS.
代码
| 1 | # Definition for a binary tree node. |