Problem 1167. matrix zigzag

Unfold a 2-D matrix to a 1-D array in zig-zag order, e.g., for matrix

 [ 1 2 3 ;
   4 5 6 ;
   7 8 9 ] 

the resulting 1-D array should be

 [ 1 2 4 7 5 3 6 8 9 ]

Solution Stats

33.97% Correct | 66.03% Incorrect
Last Solution submitted on Dec 05, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers248

Suggested Problems

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!