CodingTrain / CodingTrain/Suggestion-Box

Coding Challenge: An AI which matches text with nlp!

Open
#957 1 comment 2 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.