Assignment 2 Part 3 (submitted by Peterson on Feb 2, 17:28)

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 FirstMisspelledWord( instring ):
  2         """ finds the first misspelled word in instring i.e. the first word that doesn't appear in the dictionary file."""
  3         pass
  4 
  5 MisspelledWords( instring ):
  6         """ returns a list of all misspelled words in the text instring """
  7         pass
  8 
  9 MisspelledWordIndecies( instring ):
 10         """ returns a list of pairs of indecies which mark the substrings which are misspelled words."""
 11         pass
 12 
 13 GuessRealSpelling( inword ):
 14         """ returns a list of guesses as to the real spelling of the word inword."""
 15         pass
 16 
 17 LearnWord( inword ):
 18         """ adds inword to the dictionary file."""
 19         pass
 20 
 21 UnlearnWord( inword ):
 22         """ removes inword from the dictinary file."""
 23         pass