Given a matrix, return the elements that are on the Z form of the matrix. For example -

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

For this problem, the given matrix will be a square matrix.

Solution Stats

72 Solutions

34 Solvers

Last Solution submitted on Dec 09, 2025

Last 200 Solutions

Solution Comments

Show comments
Loading...