TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: FlexDict – Deeply Nested Python Dictionaries with Ease

16 点作者 berkayozturk超过 5 年前

1 comment

lrobinovitch超过 5 年前
This is cool! Would easily replace the slightly tricky to grok code I came across to make a binary trie last week:<p><pre><code> # in for loop: node = trie for char in number: node = node.setdefault(char, {}) </code></pre> (from here: <a href="https:&#x2F;&#x2F;www.hackerrank.com&#x2F;challenges&#x2F;maximum-xor&#x2F;forum" rel="nofollow">https:&#x2F;&#x2F;www.hackerrank.com&#x2F;challenges&#x2F;maximum-xor&#x2F;forum</a>)