Delete the column with all 0 data in a matrix(x).

e.g.

input x =

     1     0     0     4
     5     0     7     0
     9     0    11     0

output y =

     1     0     4
     5     7     0
     9    11     0

Solution Stats

118 Solutions

63 Solvers

Last Solution submitted on Feb 17, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...