Problem 44888. Given a matrix A (size m x n) create a matrix B which consists of matrix A sorted in descending order by columns and then by rows.

 ---------------
A=
[ 2 6 -3
7 12 0
-12 5 1]
---------------
B=
    [12     7     1
     6     2     0
     5    -3   -12];

Solution Stats

28.76% Correct | 71.24% Incorrect
Last Solution submitted on Oct 23, 2023

Problem Comments

Solution Comments

Show comments