Skip to content

Commit

Permalink
Update tdd-1-unguided.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tlatoza authored Nov 16, 2017
1 parent 251457c commit 36775ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdd-1-unguided.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ In this task, you'll design and implement a simple autocomplete feature.

[Autocomplete starter code] (code here)

Whenever the user begins typing a new word, your autocomplete will recommend possible completions based on the words that the user has already entered in the text area.
Whenever the user begins typing a new word, your autocomplete will recommend possible completions. Your autocomplete will generate completions based on the words that the user has already entered in the text area, ranking valid possible completions from most to least likely based on the frequency of the word in existing text. If there are no possible completions based on these words, your system should generate an empty list of completions.

**Design and implement the autocomplete feature.** Your goal is to build a working implementation and to craft a clear and easy to maintain design. You have up to 15 minutes. Notify the experimenter when you're done.

0 comments on commit 36775ed

Please sign in to comment.