

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Still calibrating
click for more info
Not enough gems
Cost: 6 gems
1: Retrieval Augmented Generation
incomplete
2: What Is Search?
incomplete
3: Project Overview
incomplete
4: Keyword Search
incomplete
5: Text Processing
incomplete
6: Punctuation
incomplete
7: Tokenization
incomplete
8: Stop Words
incomplete
9: Stemming
incomplete
Back
ctrl+,
Next
ctrl+.
This lesson's interactive features are locked, please to keep using them
We're going to keep it really simple for now by removing punctuation before matching text.
Examples:
Boots the bear! → Boots the bearThe wonderful bear, Boots → The wonderful bear BootsThere are cases where this doesn't work well, such as hyphenated words, but we don't need to worry about them yet.
Remove all punctuation from both the query and the title before attempting to match them.
Here are some of the standard library functions I used:
Run and submit the CLI tests.