This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 'MNOP';
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
y =
1
ans =
[]
|
2 | Pass |
%%
x = 'MN0P';
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
y =
0
ans =
[]
|
3 | Pass |
%%
x = 'INOUT1NOUT';
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
y =
0
ans =
[]
|
4 | Pass |
%%
x = 'UPANDDOWN';
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
y =
1
ans =
[]
|
5 | Pass |
%%
x = 'RUaMATLABPRO';
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
y =
0
ans =
[]
|
985 Solvers
Get the area codes from a list of phone numbers
417 Solvers
239 Solvers
1735 Solvers
624 Solvers