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,1;
    1,1,1,1,1]
output =[1,2,3,4,5,8,1,1,1,1,1]

Unlike the previous problem 45399, this time the given matrix can be of any size.

Solution Stats

75 Solutions

12 Solvers

Last Solution submitted on Sep 10, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...