0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 03:45:24 +00:00
OI-codes/AcWing/32/32.cpp

13 lines
258 B
C++
Raw Normal View History

class Solution {
private:
static bool cmp(int a, int b) {
return a % 2 == b % 2 ? a < b : a % 2 == 1;
}
public:
vector<int> reOrderArray(vector<int>& nums) {
sort(nums.begin(), nums.end(), cmp);
return nums;
}
};