[leetcode] 905. Sort Array By Parity

网友投稿 647 2022-10-01

[leetcode] 905. Sort Array By Parity

[leetcode] 905. Sort Array By Parity

Description

Given an array A of non-negative integers, return an array consisting of all the even elements of A, followed by all the odd elements of A.

You may return any answer array that satisfies this condition.

Example 1:

Input: [3,1,2,4]Output: [2,4,3,1]The outputs [4,2,3,1], [2,4,1,3], and [4,2,1,3] would also be accepted.

Note:

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

分析

题目的意思是:这是一道easy的题目,需要把偶数放在前面,奇数放在后面,我的方法就是首尾进行遍历。也accept了,看标准答案了之后,发现了另一种解法,非常的简洁,我这里也分享一下,用的是lambda表达式,真是厉害了

代码

class Solution: def sortArrayByParity(self, A: List[int]) -> List[int]: n=len(A) i=0 j=n-1 while(i

代码二

class Solution: def sortArrayByParity(self, A: List[int]) -> List[int]: A.sort(key=lambda x:x%2) return A

参考文献

​​[LeetCode] Approach 1: Sort​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:python 实现MinHash和MinHashLSH算法
下一篇:微信小程序的基础知识储备(小程序需要的基础知识)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~