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
|
313 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
4334 Solvers
Number of odd and even elements within matrix
124 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!