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))
|
1091 Solvers
381 Solvers
Sum the numbers on the main diagonal
453 Solvers
273 Solvers
156 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!