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))
y =
17 7 4 15 42 91
|
2 | Pass |
x = [2 10];
y_correct = [10 2];
y = your_fcn_name(x);
assert(isequal(y_correct,y))
y =
10 2
|
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))
y =
22 23 6 14 27 1 13 11
|
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))
y =
9 18 7 11 5 14 5 13 14 5 13 12 3 3
|
1600 Solvers
228 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
208 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!