Skip to content

Instantly share code, notes, and snippets.

View dontstopnowbaby's full-sized avatar
💭
I may be slow to respond unless its a matter of death

dontstopnowbaby

💭
I may be slow to respond unless its a matter of death
View GitHub Profile
@dontstopnowbaby
dontstopnowbaby / tree.md
Created April 24, 2012 08:08 — forked from hrldcpr/tree.md
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!