예제 #1
0
파일: app.py 프로젝트: jayParent/hash-table
def console():

    hash_table = HashTable()

    while True:
        op = input(prompts['operations'])

        if op == '1':
            word = input(prompts['word'])
            hash_table.add(word)
            print(hash_table)
        elif op == '4':
            return
예제 #2
0
파일: test_hash.py 프로젝트: Gaster618/Hash
def test_repr():
    table = HashTable()
    assert (table)
    table.add('qwe')
예제 #3
0
파일: test_hash.py 프로젝트: Gaster618/Hash
def test_add():
    table = HashTable()
    assert ('qwe' not in table)
    table.add('qwe')
    assert ('qwe' in table)
예제 #4
0
파일: test_hash.py 프로젝트: Gaster618/Hash
def test_remove():
    table = HashTable()
    table.add('qwe')
    assert ('qwe' in table)
    table.remove('qwe')
    assert ('qwe' not in table)