master-algorithms-py/trees/bt_find_max_depth.py
2023-08-08 13:42:15 -07:00

13 lines
239 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: bt3gl
def max_depth(root) -> int:
if root is None:
return 0
return max(max_depth(root.left) + 1, max_depth(root.right) + 1)