Given two binary trees, return a set of values found in both trees.
Iterate over the first tree using a preOrder method to add tree values into a Hashtable.
Traverse the second tree checking to see if values are present in the hashMap. If it is, add to result array.
Space : O(n)
Time: O(n)
