Giter Site home page Giter Site logo

spellcorrecter_node_cli's Introduction

Word Correction Take-Home

Write a program in JavaScript that reads a large list of English words (e.g. from /usr/share/dict/words on a unix system) into memory, and then reads words from stdin, and prints either the best spelling correction, or "NO CORRECTION" if no suitable correction can be found.

The program should print "> " as a prompt before reading each word, and should loop until killed.

Run Program

$ node ./spellcorrecter.js
> sheeeeep
sheep
> CUNsperrICY
conspiracy
> sheeple
NO CORRECTION

Mistake Types

The class of spelling mistakes to be corrected is as follows:

  1. Case (upper/lower) errors 'inSIDE -> inside'
  2. Repeated letters 'jjoobbb -> job'
  3. Incorrect vowels 'weke -> wake'
  4. Any combination of the above types of errors 'CUNsperrICY -> conspiracy'

Your solution should be faster than O(n) per word checked, where n is the length of the dictionary. That is to say, you can't scan the dictionary every time you want to spellcheck a word.

If there are many possible corrections of an input word, your program can choose one in any way you like, however your results must match the examples above (e.g. "sheeeeep" should return "sheep" and not "shap").

Incorrect Word Generator

Write a second program that generates words with spelling mistakes of the above form, starting with correctly spelled English words. Pipe its output int

spellcorrecter_node_cli's People

Contributors

falieson avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.