Live data from Hacker News

Show HN: FlexDict – Deeply Nested Python Dictionaries with Ease

github.com

1–2 of 2 posts

Re: Show HN: FlexDict – Deeply Nested Python Dictionaries with Ease

#2
This is cool! Would easily replace the slightly tricky to grok code I came across to make a binary trie last week:

  # in for loop:
      node = trie
      for char in number:
          node = node.setdefault(char, {})
  
(from here: https://www.hackerrank.com/challenges/maximum-xor/forum)