Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local dictionary = {}
- local function insertWord(dict, word)
- local head, tail = word:upper():match('^(%a)(%a*)$')
- if not head then return false; end
- if not dict[head] then dict[head] = {}; end
- if tail == '' then
- else
- end
- end
- insertWord(dictionary, 'BAG')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement