Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 365 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 365 Bytes

SortTheOdd

Fundamental Array Problem

You have an array of numbers. Your task is to sort ascending odd numbers but even numbers must be on their places.

Zero isn't an odd number and you don't need to move it. If you have an empty array, you need to return it.

Sample Input

sortArray([5, 3, 2, 8, 1, 4]) 

Sample Output

[1, 3, 2, 8, 5, 4]