mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-04-30 12:46:11 -04:00
10 lines
186 B
Python
10 lines
186 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# author: bt3gl
|
|
|
|
def height(root):
|
|
if not root:
|
|
return -1
|
|
return 1 + max(height(root.left), height(root.right))
|
|
|