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'
|
6280 Solvers
Back to basics 9 - Indexed References
392 Solvers
Back to basics 16 - byte order
172 Solvers
254 Solvers
07 - Common functions and indexing 6
348 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!