Given a matrix, sort it for each column, but cannot change the element of each row. for example input = [1 3; 2 4;1 5;3 6]; the result returned by you is target = [1 3; 1 5;2 4; 3 6];

Solution Stats

94 Solutions

26 Solvers

Last Solution submitted on May 28, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...