Hacker News new | ask | show | jobs
by hcarvalhoalves 4448 days ago
defaultdict is really multipurpose, quick trees is only one of the neat tricks. I like the following definition :)

    >>> Tree = lambda: defaultdict(Tree)