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))
ans =
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))
ans =
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))
ans =
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))
ans =
9 18 7 11 5 14 5 13 14 5 13 12 3 3
|
Find the alphabetic word product
2321 Solvers
289 Solvers
227 Solvers
387 Solvers
167 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!