NO _________ ALLOWED.... - MATLAB Cody - MATLAB Central

Problem 1712. NO _________ ALLOWED....

Difficulty:Rate

So you're given a sentence where if there is a particular word in the sentence then the output is 1, if it is not there then the output is 0. For example:

Sentence = 'The birds in the field are eating bird seed';
Not_allowed = 'field'

so the output will be, because field is found in the sentence:

Output = 1; 

Another example:

Sentence = 'If the sky is blue on earth, what is the sky color on mars?';
Not_allowed = 'oven'

so the output will be, because oven is not found in the sentence:

Output = 0; 

That is it!

Have Fun!

Solution Stats

58.63% Correct | 41.37% Incorrect
Last Solution submitted on May 03, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
4

Problem Recent Solvers209

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page