Write a recursive function that
returns true if there is a node in the given binary tree with the
given value, and false otherwise. Note that this tree is not
be a Binary Search Tree.
If the current node has the value that you are looking for, then return.
If the result of calling the function recursively on either subtree returns true, then return true. Otherwise, return false.