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 = [15 42 91 17 7 4];
y_correct = [17 7 4 15 42 91];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
%%
x = [2 10];
y_correct = [10 2];
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
3 | Pass |
%%
x = [27 1 13 11 22 23 6 14];
y_correct = [22 23 6 14 27 1 13 11];
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
4 | Pass |
%%
x = [13 14 5 13 12 3 3 9 18 7 11 5 14 5];
y_correct = [9 18 7 11 5 14 5 13 14 5 13 12 3 3];
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
6719 Solvers
Check if number exists in vector
4467 Solvers
3064 Solvers
498 Solvers
509 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!