Skip to content

furkankeremselimoglu/SpellChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CS 101 Project

Spell Checker: The Goal of the Project

In this project, your job is to write an English spell checker. Your program should ask the user to enter a line of text, which can contain multiple words, even sentences. Your program should then proceed to parse the line into words, and eventually print out a line of text with all the misspelled words replaced with corrected words.

So, for example if the input is:

There are sven people, of which three rae women.

The output should be:

There are seven people, of which three are women.


Damerau–Levenshtein distance algorithm used in this project.

Sample usage of the project:

sample usage

Releases

No releases published

Packages

No packages published

Languages