Advertisement
alestane

Dictionary tree (verify child)

Feb 3rd, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local dictionary = {}
  2.  
  3. local function insertWord(dict, word)
  4.     local head, tail = word:upper():match('^(%a)(%a*)$')
  5.     if not head then return false; end
  6.     if not dict[head] then dict[head] = {}; end
  7. end
  8.  
  9. insertWord(dictionary, 'BAG')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement