CodingTrain / CodingTrain/Suggestion-Box
Coding Challenge: An AI which matches text with nlp!
Open
- Dominant language
- No language data
- Stars
- 570
- Forks
- 85
- PR merge metrics
- No merged PRs in 30d
Description
As suggested by @ShreerangV in https://github.com/CodingTrain/website/issues/564:
See this:
``` javascript
var s = 'I need to use a tissue'
```
Now what you should do:
``` javascript
var t = 'I want a tissue';
console.log(s.test(t));
// Should return true
t = 'Tissue please!';
console.log(s.test(t));
// Should return true again!
t = 'Can I have a tissue?';
// etc.
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.