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

53.19% Correct | 46.81% Incorrect
Last Solution submitted on Apr 09, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers44

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!