Problem 44483. Separate even from odd numbers in a vector - without loops

Without using loops, rearrange a vector of integers such that the odd numbers appear at the beginning, and even numbers at the end. The order within each group should be preserved.

Examples:

Input:  v = [1, 0, 2, 9, 3, 8, 8, 4]
Output: w = [1, 9, 3, 0, 2, 8, 8, 4]
Input:  v = [2
             7
             0
             3
             2]
Output: w = [7
             3
             2
             0
             2]
Input:  v = []
Output: w = []

Solution Stats

27.27% Correct | 72.73% Incorrect
Last Solution submitted on Aug 19, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers387

Suggested Problems

More from this Author25

Community Treasure Hunt

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

Start Hunting!