Skip to content

Instantly share code, notes, and snippets.

@pavlos
pavlos / about.md
Created August 14, 2011 19:00 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
class BetterTrie < Containers::Trie
def initialize
@longest_key = 0
super
end
def push(key, value)
key_length = key.to_s.length
@longest_key = key_length if key_length > @longest_key