Skip to content

Commit

Permalink
Update tdd-1-guided.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tlatoza authored Nov 16, 2017
1 parent 36775ed commit ebf5393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdd-1-guided.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.

To design and implement your autocomplete feature, you'll use this design strategy strategy:

Expand Down

0 comments on commit ebf5393

Please sign in to comment.