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 3
5 1
5 1];
y_correct = [4;3;5;1;5;1];
assert(isequal(rearrange2(x),y_correct))
y =
4
y =
4 3
y =
4 3 5
y =
4 3 5 1
y =
4 3 5 1 5
y =
4 3 5 1 5 1
|
2 | Pass |
x = [ 2 4
1 4
1 2];
y_correct = [2;4;1;4;1;2];
assert(isequal(rearrange2(x),y_correct))
y =
2
y =
2 4
y =
2 4 1
y =
2 4 1 4
y =
2 4 1 4 1
y =
2 4 1 4 1 2
|
1104 Solvers
795 Solvers
465 Solvers
Given a 4x4 matrix, swap the two middle columns
300 Solvers
Flip the vector from right to left
751 Solvers