Problem 1534. Sort (high on middle, low on ends)

Sort the vector of numbers in order low-high-low. Even numbers appear in ascending order on the left and odd numbers appear in descending order on the right.

Example:

 x = [ 5 3 4 1 2 ]

the output is:

 y = [ 2 4 5 3 1 ]

Solution Stats

54.64% Correct | 45.36% Incorrect
Last Solution submitted on Oct 05, 2025

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers47

Suggested Problems

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!