Trying to use special characters in the trie: å, ä and ö, without success ```ruby trie.add("åre") trie.has_key?("åre") # => true trie.root.walk("å") # => nil ``` Weird that `has_key?` works, but `walk` doesn't? Anything that can be done about this? @hickford @tyler