Skip to content

Instantly share code, notes, and snippets.

@jude90
Created December 6, 2015 13:14
Show Gist options
  • Save jude90/a13261f460efec250ec6 to your computer and use it in GitHub Desktop.
Save jude90/a13261f460efec250ec6 to your computer and use it in GitHub Desktop.
dict with hierarchy
def build(seq):
if len(seq) == 0:
return None
else:
head ,tail = seq[0], seq[1::]
return {head: build(tail)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment