Skip to content

Instantly share code, notes, and snippets.

View ankitmlive's full-sized avatar
🏠
slapping the keyboard..

Ankit Mishra ankitmlive

🏠
slapping the keyboard..
View GitHub Profile
@ankitmlive
ankitmlive / tree.md
Created July 30, 2021 12:22 — 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!