Skip to content

Instantly share code, notes, and snippets.

@wycats
Created August 27, 2008 05:42
Show Gist options
  • Save wycats/7431 to your computer and use it in GitHub Desktop.
Save wycats/7431 to your computer and use it in GitHub Desktop.
# t = Containers::Trie.new
# t.push("Hello", "World")
# t.push("Hilly", "World")
# t.push("Hello, bob", "World")
# t.wildcard("H*ll.") #=> ["Hello", "Hilly"]
# t.wildcard("Hel") #=> []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment