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))
|
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))
|
3 | Pass |
%%
x = 0;
y_correct = 0;
assert(isequal(ascending_order(x),y_correct))
|
900 Solvers
Find state names that start with the letter N
598 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
Sum the numbers on the main diagonal
453 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!