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=[1 1 1 2 2 2 1 1 2 1 1];
str='up'
y_correct = [4 9];
assert(isequal(your_fcn_name(x,str),y_correct))
str =
up
|
2 | Pass |
%%
x=[1 1 1 2 2 2 1 1 2 1 1];
str='down'
y_correct = [7 10];
assert(isequal(your_fcn_name(x,str),y_correct))
str =
down
|
3 | Pass |
%%
x=[1];
str='down'
y_correct = [];
assert(isequal(your_fcn_name(x,str),y_correct))
str =
down
idx =
[]
|
1598 Solvers
213 Solvers
495 Solvers
Back to basics 13 - Input variables
233 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!