2023-08-08 13:44:06 -07:00

13 lines
206 B
Python

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