Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 2 3
3 4
3 4];
y_correct = [2;3;3;3;4;4];
assert(isequal(rearrange(x),y_correct))
y =
2
3
3
3
4
4
|
2 | Pass |
x = [ 4 3
5 1
5 1];
y_correct = [4;5;5;3;1;1];
assert(isequal(rearrange(x),y_correct))
y =
4
5
5
3
1
1
|
Determine whether a vector is monotonically increasing
11917 Solvers
1836 Solvers
Given a matrix, return the last eigen value
175 Solvers
204 Solvers
151 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!