Easy
Every node has value 0 or 1. Each root-to-leaf path represents a binary number (most significant bit first). Return the sum, in base 10, of all root-to-leaf binary numbers.
Input: root = [1,0,1,0,1,0,1] Output: 22
Input: root = [1,1] Output: 3