Note: Each node of the tree represents a single digit number i.e. (0-9). Root node denotes the most significant digit of any number formed.
Example:
Input : 1 / \ 2 3 Output : 12 + 13 = 25
public int sumOfRootToLeafNumbers(TreeNode root) { }