Skip to content

Instantly share code, notes, and snippets.

View dubc461's full-sized avatar

Nyar dubc461

  • Personal
View GitHub Profile
@dubc461
dubc461 / tree.md
Created December 17, 2019 07:51 — 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!