Skip to content

Commit 9eb0265

Browse files
committed
Adding EfficientSolution and SimpleSolution - Problem - 905 - Sort By Parity
1 parent ff4820c commit 9eb0265

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

Sort_By_Parity/EfficientSolution.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
##==================================
2+
## Leetcode
3+
## Student: Vandit Jyotindra Gajjar
4+
## Year: 2020
5+
## Problem: 905
6+
## Problem Name: Sort Array by Parity
7+
##===================================
8+
#
9+
#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.
10+
#
11+
#You may return any answer array that satisfies this condition.
12+
#
13+
#Example 1:
14+
#
15+
#Input: [3,1,2,4]
16+
#Output: [2,4,3,1]
17+
#The outputs [4,2,3,1], [2,4,1,3], and [4,2,1,3] would also be accepted.
18+
class Solution:
19+
def sortArrayByParity(self, A):
20+
tmp = [] #Initialize tmp list
21+
for i in range(len(A)): #Loop through A
22+
if A[i] % 2 != 1: #Condition-check: If element is even
23+
tmp.append(A[i]) #Append the element in tmp
24+
for j in range(len(A)): #Loop through A
25+
if A[j] % 2 == 1: #Condition-check: If element is odd
26+
tmp.append(A[j]) #Append the element in tmp
27+
return tmp #Return tmp at the end.

Sort_By_Parity/SimpleSolution.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
##==================================
2+
## Leetcode
3+
## Student: Vandit Jyotindra Gajjar
4+
## Year: 2020
5+
## Problem: 905
6+
## Problem Name: Sort Array by Parity
7+
##===================================
8+
#
9+
#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.
10+
#
11+
#You may return any answer array that satisfies this condition.
12+
#
13+
#Example 1:
14+
#
15+
#Input: [3,1,2,4]
16+
#Output: [2,4,3,1]
17+
#The outputs [4,2,3,1], [2,4,1,3], and [4,2,1,3] would also be accepted.
18+
class Solution:
19+
def sortArrayByParity(self, A):
20+
if A == []: #Condition-check: If A is empty
21+
return None #Return None
22+
A.sort() #Sort the Array
23+
tmpEven = [] #Initialize tmpEven list
24+
for i in range(len(A)): #Loop through A
25+
if A[i] % 2 != 1: #Condition-check: If element is not odd
26+
tmpEven.append(A[i]) #Append that element in tmpEven
27+
tmpOdd = [] #Initialize tmpOdd list
28+
for j in range(len(A)): #Loop through A
29+
if A[j] % 2 == 1: #Condition-check: If element is odd
30+
tmpOdd.append(A[j]) #Append that element in tmpOdd
31+
tmp = tmpEven + tmpOdd #Initialize tmp and add both even-odd list
32+
return tmp #Finally return tmp which is sorted array

0 commit comments

Comments
 (0)