LeetCode Solution, Easy, 905. Sort Array By Parity
905. Sort Array By Parity
題目敘述
Given an integer array nums, move all the even integers at the beginning of the array followed by all the odd integers.
Return any array that satisfies this condition.
Example 1:
Input: nums = [3,1,2,4]
Output: [2,4,3,1...
blog.taiwolskit.com4 min read