Leetcode 905.按奇偶顺序排序数组

905.按奇偶顺序排序数组

题目

给定一个非负整数数组 A,返回一个由 A 的所有偶数元素组成的数组,后面跟 A 的所有奇数元素。

你可以返回满足此条件的任何数组作为答案。

1
2
3
4
5
示例:

输入:[3,1,2,4]
输出:[2,4,3,1]
输出 [4,2,3,1],[2,4,1,3] 和 [4,2,1,3] 也会被接受。

提示:

1 <= A.length <= 5000
0 <= A[i] <= 5000

方法

1
2
3
4
5
6
7
8
9
class Solution(object):
def sortArrayByParity(self, A):
"""
:type A: List[int]
:rtype: List[int]
"""
return sorted(A,key=lambda x:x%2!=0)
# input:[3,1,2,4]
# output:[2,4,3,1]