Download this file.
Please log in if you would like to add comments. | |
1 | def clean_word(word): | 2 | """Remove punctuation from a word and return the cleaned word.""" | 3 | pass | 4 | | 5 | def is_checkable_word(word): | 6 | """Return true if the given string is a checkable word.""" | 7 | pass | 8 | | 9 | def dictionary_contains(word): | 10 | """Return true if the given word is in the dictionary.""" | 11 | pass | 12 | | 13 | def add_word(word): | 14 | """Add a word to the dictionary, returning nothing.""" | 15 | pass | 16 | | 17 | def remove_word(word): | 18 | """Remove a word from the dictionary, returning nothing.""" | 19 | pass |
|