LC: 1214. Two Sum BSTs
https://leetcode.com/problems/two-sum-bsts/
Input: root1 = [2,1,4], root2 = [1,0,3], target = 5
Output: true
Explanation: 2 and 3 sum up to 5.Input: root1 = [0,-10,10], root2 = [5,1,7,0,2], target = 18
Output: falseLast updated

