Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

FizzBuzz Tree

Challenge

Traverse a binary tree, and return the highest value within the tree.

Approach & Efficiency

BigO: Time: O(n) Space: O(H), H = Height of call stack

Solution