Given a matrix of any size, print its elements from the zigzag form of the matrix.

For example,

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

Solution Stats

56 Solutions

23 Solvers

Last Solution submitted on Jul 10, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...