def test_1(): t = Trie() t.insert('apple') t.insert('pear') assert t.search('apple') assert not t.search('app') assert t.startsWith('app')
#!/usr/bin/env python # -*- coding: utf-8 -*- from solution import Trie trie = Trie() trie.insert("somestring") print(trie.search("some")) print(trie.startsWith("some")) print(trie.search("somestring"))
def test_0(): t = Trie() assert not t.search('a') assert not t.startsWith('sa')
from solution import Trie #basic tests trie = Trie() trie.insert('apple') assert trie.search('apple') assert not trie.search('app') assert trie.startsWith('app') trie.insert('app') assert trie.search('app')