Skip to content

Instantly share code, notes, and snippets.

@AndreLouisCaron
Created June 1, 2017 15:23
Show Gist options
  • Save AndreLouisCaron/e65339702ecf16b100ba8c45808018a6 to your computer and use it in GitHub Desktop.
Save AndreLouisCaron/e65339702ecf16b100ba8c45808018a6 to your computer and use it in GitHub Desktop.
Python dicttree: cutest recursion I've ever seen
from collections import defaultdict
def dicttree():
return defaultdict(dicttree)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment