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))
|
337 Solvers
404 Solvers
149 Solvers
Make a random, non-repeating vector.
2795 Solvers
Longest run of consecutive numbers
1648 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!