Exemplo n.º 1
0
        public TrieWordValidator(IEnumerable <string> wordsArray, ITrieFactory trieFactory)
        {
            var wordsList = new List <string>(wordsArray);
            var trie      = trieFactory.Create();

            wordsList.ForEach(x => trie.Insert(x));
            _validWords = trie;
        }