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 = [1 2; 3 4];
y_correct = [1 2 3 4];
assert(isequal(zigzag(x),y_correct))
|
2 | Pass |
x = [ 1 2 3; 4 5 6; 7 8 9];
y_correct = [ 1 2 4 7 5 3 6 8 9];
assert(isequal(zigzag(x),y_correct))
|
3 | Pass |
x = magic(4);
y_correct = [16 2 5 9 11 3 13 10 7 4 14 6 8 12 15 1];
assert(isequal(zigzag(x),y_correct))
|
Select every other element of a vector
20344 Solvers
6721 Solvers
Back to basics 4 - Search Path
321 Solvers
232 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!