Problem Statment
Given a binary tree, find its height.
Example 1:
1
/ \
2 3
>> 2
Example 2:
2
\
1
/
3
>> 3