master-algorithms-py/trees/bt_preorder.py
2023-08-08 13:36:59 -07:00

12 lines
215 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# author: bt3gl
def preorder(root) -> list:
if root is None:
return []
return [root.val] + preorder(root.left) + preorder(root.right)