def spellcheck(words): """Returns true if the string words is spelled correctly.""" def addword(word): """Adds given word to dictionary. Errors if word already in dictionary.""" def removeword(word): """Removes given word from dictionary. Errors if word not in dictionary.""" def checkword(word): """Returns true if word is spelled correctly."""