Given a matrix x with n rows and m columns, return a matrix y with n rows and 2m columns, such that every row in x is sorted from low to high and then from high to low.
Example:
x = 9 2 8 1
5 4 9 8
8 9 6 9
y = 1 2 8 9 9 8 2 1
4 5 8 9 9 8 5 4
6 8 9 9 9 9 8 6
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers332
Suggested Problems
-
358 Solvers
-
Back to basics 22 - Rotate a matrix
937 Solvers
-
Return unique values without sorting
1002 Solvers
-
Return the first and last characters of a character array
11914 Solvers
-
1487 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.