Skip to content

Instantly share code, notes, and snippets.

View chuanconggao's full-sized avatar
🧑‍💻

chuanconggao

🧑‍💻
View GitHub Profile
@hrldcpr
hrldcpr / tree.md
Last active January 6, 2025 22:43
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!