leetcode-905-数组排序
法一:对数组进行排序,将所有的偶数放到奇数的前面,我们可以考虑使用两个for循环,先将所有的偶数存到数组中,在将所有的奇数存进去class Solution { public int[] sortArrayByParity(int[] A) { int[] B = new int[A.length]; int t = 0; for(...