Skip to content

Instantly share code, notes, and snippets.

View Mandawi's full-sized avatar
💭
Working on some projects & having fun

Osamah Mandawi Mandawi

💭
Working on some projects & having fun
View GitHub Profile
@Mandawi
Mandawi / tree.md
Created October 6, 2019 18:58 — 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!