Assignment 2 Part 3 (submitted by Thanh on Feb 3, 02:10)

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 splCheck(wd):
  2     """ Checks if wd is a word """
  3     pass
  4 
  5 def pasCheck(aPassage):
  6     """ Checks if all the words in a passage is spelled correctly """
  7     pass
  8 
  9 def specialWord(wd):
 10     """ Allows this word to be considered a word """
 11     pass
 12 
 13 
 14 def addWord(wd):
 15     """ Adds wd (a word) to the dictionary """
 16     pass
 17 
 18 def delWord(wd):
 19     """ Deletes wd (a word) from the dictionary """
 20     pass