Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
Sentence = 'The birds in the field are eating bird seed';
Not_allowed = 'field'
output = 1;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'field'
|
2 | Pass |
Sentence = 'If the sky is blue on earth, what is the sky color on mars?';
Not_allowed = 'oven'
output = 0;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'oven'
|
3 | Pass |
Sentence = 'Oh where, oh where has my little dog gone?';
Not_allowed = 'where'
output = 1;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'where'
|
4 | Pass |
Sentence = 'Insanity: doing the same thing over and over again and expecting different results...';
Not_allowed = 'Einstein'
output = 0;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'Einstein'
|
5 | Pass |
Sentence = 'Wheres the cream filling?';
Not_allowed = 'cream'
output = 1;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'cream'
|
6 | Pass |
Sentence = 'MATLAB is the coolest!';
Not_allowed = 'MATLAB'
output = 1;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'MATLAB'
|
7 | Pass |
Sentence = 'No no, you got it all wrong!';
Not_allowed = 'No'
output = 1;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'No'
|
8 | Pass |
Sentence = 'This planet, with all its appalling immensity, is to electric currents virtually no more than a small metal ball.';
Not_allowed = 'Tesla'
output = 0;
assert(isequal(NotAllowed(Sentence, Not_allowed),output))
Not_allowed =
'Tesla'
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
895 Solvers
251 Solvers
184 Solvers
Matlab Basics - y as a function of x
339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!