This commit is contained in:
2026-06-07 17:56:47 +00:00
parent 67b7ced5ba
commit 59aed7c741
8 changed files with 38 additions and 5 deletions
+5 -2
View File
@@ -3,13 +3,16 @@ words = set()
def check(word):
return word.lower() in words
def load(dictionary):
with open(dictionary) as file:
words.update(file.read().splitlines())
return True
def size():
def size():
return len(words)
def unload():
def unload():
return True