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

52.69% Correct | 47.31% Incorrect
Last Solution submitted on Feb 08, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers43

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!