23 lines
370 B
Python
23 lines
370 B
Python
from fileinput import close
|
|
|
|
words = set()
|
|
|
|
def check(word):
|
|
if word.lower() in words:
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
def load(dictionary):
|
|
file = open(dictionary, "r")
|
|
for line in file:
|
|
word = line.rstrip()
|
|
words.add(word)
|
|
close(file)
|
|
return True
|
|
|
|
def size():
|
|
return len(words)
|
|
|
|
def unload():
|
|
return True |