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 3
y =
4 3 5 1
y =
4 3 5 1 5 1
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 4
y =
2 4 1 4
y =
2 4 1 4 1 2
y =
2
4
1
4
1
2
|
1913 Solvers
451 Solvers
247 Solvers
250 Solvers
81 Solvers