Check Full Binary Tree 07/26
Full Binary Tree
1
/ \
2 3
/ \
4 5
Not a Full Binary Tree
1
/ \
2 3
/
4 Example
Given tree {1,2,3}, return true
Given tree {1,2,3,4}, return false
Given tree {1,2,3,4,5} return trueLast updated