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))
ans =
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))
ans =
4
5
5
3
1
1
|
Back to basics 22 - Rotate a matrix
763 Solvers
Return the first and last character of a string
3447 Solvers
Duplicate each element of a vector.
518 Solvers
345 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!