Skip to content

Instantly share code, notes, and snippets.

View xihajun's full-sized avatar
🐢
I may be slowwww to respond.

who is xihajun

🐢
I may be slowwww to respond.
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!