Leetcode - Duplicate Zeros
Leetcode - Height Checker

Leetcode - Sort Array By Parity

violet posted @ Jul 14, 2020 06:06:00 AM in 算法 with tags Algorithm Golang array , 303 阅读

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

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.

 

func sortArrayByParity(A []int) []int {
    var i, j int
    for {
        for i < len(A) && A[i] % 2 == 0 {
            i++
        }
        if i >= len(A) {
            break
        }
        j = i + 1
        for j < len(A) && A[j] % 2 != 0 {
            j++
        }
        if j >= len(A) {
            break
        }
        A[i], A[j] = A[j], A[i]
        i++
    }
    return A
}
Hrmshry.nic.in 2023 说:
Nov 11, 2022 05:56:57 PM

This portal contains the service records of government employees. It contains a minimum of 25 forms. This portal can be used for basic details of a government employee like Punishments, Leave Records, Hrmshry.nic.in 2023 Transfer, Promotions, ACRs, Loans, Seniority, Service Breaks etc.,HRMS can be abbreviated as Human Resource Management System. It is a software application developed to manage human resources by companies. For example, Recruiting candidates, training, pay roll etc.

download fssai certi 说:
Dec 17, 2022 10:14:29 PM

FSSAI identified the necessity for an overhaul, which resulted in the creation of a new application called the Food Safety and Compliance System (FoSCoS). During the implementation of FoSCoS, download fssai certificate from foscos the effort was made to ensure that the majority of its functionality and process flows are as similar to the FLRS program as practicable, while simultaneously making it more user delightful and optimizing its system performance.

ORNL Online Banking 说:
Jan 30, 2023 05:06:46 PM

The ORNL Bank does give easy access to the customer to utilize their different features through online banking. The dedicated website forms the ORNL Bank can use by a customer who does have an account with the bank. ORNL Online Banking Online banking is available to every customer irrespective of their account type, the customers asked to get enroll ORNL online banking page with their account details if they wish to enjoy the online ORNL federal credit union services.

mon activité google 说:
Jul 13, 2023 12:45:50 AM

Mon activité aujourd’hui est une pièce qui suit ou enregistre l’activité des utilisateurs qui collecte des informations chaque fois que les utilisateurs disposant d’un compte Google utilisent les services Google quotidiennement. mon activité google chrome Ces services d’enregistrement ou de collecte de Mon activité incluent YouTube, Google Maps et d’autres applications Google, ainsi que votre historique de recherche lorsque vous utilisez le navigateur Google Chrome ou effectuez une recherche Google.

jnanabhumiap.in 说:
Jan 28, 2024 01:18:31 AM

JNANABHUMI AP provides a CBSE syllabus for all classes for the academic year 2024 has been designed as per the guidelines of the CBSE Board. The syllabus offers a conceptual background and lays the groundwork for the Class 10 Board exams. jnanabhumiap.in By visiting the page, students will find the downloadable pdf of the reduced CBSE 10th Syllabus along with the deleted portion of the syllabus for each subject. So, students are advised to prepare for the exam, as per the syllabus mentioned here.


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter