Problem Set 5: Mispellings

tl;dr

  1. Watch Week 5’s lecture.

  2. Answer some questions about a spell checker.

  3. Implement a spell checker.

  4. Submit a form.

Help

For help with Week 5 and Problem Set 5:

  • Attend a walkthrough on Thu 10/6, 4pm – 5:15pm, in SSS 114.

  • Watch Zamyla’s walkthroughs herein.

  • Attend your TA’s section (or another if you have a conflict).

  • Take advantage of help50, eprintf, and debug50.

  • Post questions and search answers in CS50 Discuss.

  • Attend office hours.

Getting Started

Log into cs50.io and execute

update50

within a terminal window to make sure your workspace is up-to-date.

Next, execute

mkdir ~/workspace/pset5/

at your prompt in order to make a directory called pset5 in your workspace directory.

Now execute

cd ~/workspace/pset5/

and your prompt should resemble the below.

~/workspace/pset5/ $

Academic Honesty

Do keep in mind the course’s policy on academic honesty, particularly its "regret clause."

Problems

How to Submit

Step 1 of 2

  • Update your IDE:

    update50
  • Submit speller:

    cd ~/workspace/pset5/speller/
    submit50 speller

Step 2 of 2

This was Problem Set 5.