Assignment 2 Part 3 (submitted by Richard on Feb 3, 02:53)

Beautiful Code
Ka-Ping Yee

AUTHORS:   Adam   Calvin   Chris   David   Derek   Hunter   Jacob   Jason   Jun   Karl   Kevin   Michael   Morgan   Nadia   Nerissa   Omair   Peter   Peterson   Ping   Richard   Rosie   Scott   Thanh   Varun

Download this file.

COMMENTS

Please log in if you would like to add comments.

   

  1 def spellcheck(words):
  2     """Returns true if the string words is spelled correctly."""
  3 
  4 def addword(word):
  5     """Adds given word to dictionary.  Errors if word already in dictionary."""
  6 
  7 def removeword(word):
  8     """Removes given word from dictionary.  Errors if word not in dictionary."""
  9 
 10 def checkword(word):
 11     """Returns true if word is spelled correctly."""