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))
|
2 | Pass |
%%
x = 'MN0P';
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
y =
0
|
3 | Pass |
%%
x = 'INOUT1NOUT';
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
y =
0
|
4 | Pass |
%%
x = 'UPANDDOWN';
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
|
5 | Pass |
%%
x = 'RUaMATLABPRO';
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
y =
0
|
How to find the position of an element in a vector without using the find function
2322 Solvers
300 Solvers
298 Solvers
140 Solvers
903 Solvers