Assignment 2 Part 3 (submitted by Jason on Feb 3, 01:27)

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 addword(word):
  2     """Adds word to the dictionary."""
  3     pass
  4 
  5 def removeword(word):
  6     """Removes word from the dictionary."""
  7     pass
  8 
  9 def findword(word):
 10     """Finds word in the dictionary."""
 11     pass
 12 
 13 def loadDictionary(filename):
 14     """Loads dictionary from filename."""
 15     pass
 16 
 17 def parseWords(wordstring):
 18     """Returns a list of word strings, from the wordstring chunk."""
 19     pass
 20 
 21 def checkspelling(word):
 22     """Checks the spelling of ONE word."""
 23     pass
 24 
 25 def checkchunk(wordstring):
 26     """Returns a list of words that have been verified against dictionary"""
 27     pass