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 = [ 5 4 1 3 2];
y_correct = [ 2 4 5 3 1 ];
assert(isequal(sort_mid(x),y_correct))
|
2 | Pass |
%%
x = [ 73 45 23 32 65 94 10 64 57 35 ];
y_correct = [ 10 32 64 94 73 65 57 45 35 23 ];
assert(isequal(sort_mid(x),y_correct))
|
1421 Solvers
900 Solvers
Saving MATLAB session to a file
145 Solvers
Simple equation: Annual salary
3779 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!