Dictionary contains 370105 English words.
- CMake (version >= 3.20)
- Suitable C++ compiler.
- Any build tool CMake supports. (Make or ninja prefered)
cd spell-checker
cmake -S . -B build
cd build
makecd spell-checker
makeBuild binary files locates in bin folder in root folder.
cd spell-checker
cd bin
./spell-checker- Use smart pointers instead of raw pointers.
- Implement suggestion algorithm.
- Compare suggestions by distance with Levenshtein.