Given a matrix x with n rows and m columns, return a matrix y with 2n rows and m columns, such that every column in x is sorted from low to high and then from high to low.

Example:

x = 8  9  3  9
    9  6  5  2
    2  1  9  9
y = 2  1  3  2
    8  6  5  9
    9  9  9  9
    9  9  9  9
    8  6  5  9
    2  1  3  2

Solution Stats

2064 Solutions

341 Solvers

Last Solution submitted on May 29, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...