반응형
짝수면 앞에 넣어주고, 홀수면 뒤에 넣어주면 된다.
class Solution {
public:
vector<int> sortArrayByParity(vector<int>& A) {
vector<int>ans;
for(int i = 0;i<A.size();i++){
if(A[i] %2 == 0)
ans.insert(ans.begin(), A[i]);
else
ans.push_back(A[i]);
}
return ans;
}
};
반응형
'IT > 알고리즘' 카테고리의 다른 글
41] Leetcode 1. Two Sum (0) | 2020.08.18 |
---|---|
40] Leetcode 912. Sort an Array (0) | 2020.08.07 |
38] Leetcode 961. N-Repeated Element in Size 2N Array (0) | 2020.08.05 |
37] Leetcode 1380. Lucky Numbers in a Matrix (0) | 2020.07.21 |
36] Leetcode 1460. Make Two Arrays Equal by Reversing Sub-arrays (0) | 2020.07.21 |
댓글