예제 #1
0
def test_1():
    t = Trie()
    t.insert('apple')
    t.insert('pear')
    assert t.search('apple')
    assert not t.search('app')
    assert t.startsWith('app')
예제 #2
0
#!/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"))
예제 #3
0
def test_0():
    t = Trie()
    assert not t.search('a')
    assert not t.startsWith('sa')
예제 #4
0
파일: test_.py 프로젝트: ftlka/problems
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')