# Easy, DFS
Divide and Conquer, think from top to bottom
Stop condition( is also called edge case because only one main function ): root = None
root = None
Find max depth of left and right sub-tree
Return (max of left and right max depth + 1)
Last updated 5 years ago