Skip to content

Instantly share code, notes, and snippets.

View yanyiwu's full-sized avatar
🛠️
Think Big, Dive Deep.

Yanyi Wu yanyiwu

🛠️
Think Big, Dive Deep.
View GitHub Profile
@yanyiwu
yanyiwu / tree.md
Created August 2, 2013 09:12 — forked from hrldcpr/tree.md

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!