Skip to content

Instantly share code, notes, and snippets.

View vivatolu's full-sized avatar

Tolu Atanda vivatolu

  • Washington, DC area
View GitHub Profile
@vivatolu
vivatolu / tree.md
Created March 17, 2021 02:33 — 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!