Problem 44101. Adaptive ZigZag

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

 [ 1 2 5 6;
   3 4 7 8;
   9 10 13 14;
   11 12 15 16] 

the resulting 1-D array should be

 [ 1 5 9 13 2 3 4 6 7 8 10 11 12 14 15 16]

Solution Stats

46.15% Correct | 53.85% Incorrect
Last Solution submitted on Apr 01, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers13

Suggested Problems

More from this Author14

Problem Tags

Community Treasure Hunt

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

Start Hunting!