Challenge: Copy Tree
Let’s copy a binary tree.
We'll cover the following...
Problem
Given a binary tree, copy its values to another binary tree.
Input
A binary tree.
Output
A new binary tree with the data of the given ...