Skip to content

Instantly share code, notes, and snippets.

View jg3526's full-sized avatar

Jie Gao jg3526

  • Columbia University
  • New York
View GitHub Profile
@jg3526
jg3526 / tree.md
Created October 13, 2015 08:00 — 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!