zoukankan      html  css  js  c++  java
  • 905. 按奇偶排序数组

    地址:https://leetcode-cn.com/problems/sort-array-by-parity/

    <?php
    /**
    给定一个非负整数数组 A,返回一个数组,在该数组中, A 的所有偶数元素之后跟着所有奇数元素。
    
    你可以返回满足此条件的任何数组作为答案。
    
     
    
    示例:
    
    输入:[3,1,2,4]
    输出:[2,4,3,1]
    输出 [4,2,3,1],[2,4,1,3] 和 [4,2,1,3] 也会被接受。
    
    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/sort-array-by-parity
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
     */
    class Solution {
    
        /**
         * @param Integer[] $A
         * @return Integer[]
         */
        function sortArrayByParity($A) {
            foreach ($A as $key => $value){
                if ($value & 1) {
                    $A[] = $value;
                    unset($A[$key]);
                }
            }
            return ($A);
        }
    }
  • 相关阅读:
    JavaScript -- 条件语句和循环语句
    xpath的|
    Pythonic
    4k图片爬取+中文乱码
    xpath-房价爬取
    (.*?)实验室
    模块的循环导入
    bs4-爬取小说
    糗图-图片爬取
    re实战记录
  • 原文地址:https://www.cnblogs.com/8013-cmf/p/13739390.html
Copyright © 2011-2022 走看看