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 = [4 5 1 2 9];
y_correct = [1 2 4 5 9];
assert(isequal(ascending_order(x),y_correct))
ans =
1 2 4 5 9
|
2 | Pass |
%%
x = [10 8 -4 3 1 -1 0];
y_correct = [-4 -1 0 1 3 8 10];
assert(isequal(ascending_order(x),y_correct))
ans =
-4 -1 0 1 3 8 10
|
3 | Pass |
%%
x = 0;
y_correct = 0;
assert(isequal(ascending_order(x),y_correct))
ans =
0
|
276 Solvers
Flag largest magnitude swings as they occur
524 Solvers
Generate a random matrix A of (1,-1)
161 Solvers
2127 Solvers
Test Problem; Create a 5x5 array containing all ones
198 Solvers