CodingTrain / Suggestion-Box

A repo to track ideas for topics
571 stars 86 forks source link

Coding Challenge: An AI which matches text with nlp! #957

Open vimkat opened 6 years ago

vimkat commented 6 years ago

As suggested by @ShreerangV in https://github.com/CodingTrain/website/issues/564:

See this:

var s = 'I need to use a tissue'

Now what you should do:

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.
s-mv commented 6 years ago

I exactly want that to happen as soon as tomorrow! Not that it would happen, eh. But there is always Bravey.js, which is still under development. So it will take a while to figure this out...