aboutsummaryrefslogtreecommitdiff
path: root/challenge-213/eric-cheung/python/ch-1.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-213/eric-cheung/python/ch-1.py')
-rwxr-xr-xchallenge-213/eric-cheung/python/ch-1.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/challenge-213/eric-cheung/python/ch-1.py b/challenge-213/eric-cheung/python/ch-1.py
new file mode 100755
index 0000000000..84012d3bd2
--- /dev/null
+++ b/challenge-213/eric-cheung/python/ch-1.py
@@ -0,0 +1,21 @@
+
+## arrListInput = [1, 2, 3, 4, 5, 6] ## Example 1
+## arrListInput = [1, 2] ## Example 2
+arrListInput = [1] ## Example 3
+
+arrListOutput = []
+
+if len(arrListInput) > 1:
+ arrListInput.sort()
+
+ for nElem in arrListInput:
+ if nElem % 2 == 0:
+ arrListOutput.append(nElem)
+
+ for nElem in arrListInput:
+ if nElem % 2 == 1:
+ arrListOutput.append(nElem)
+else:
+ arrListOutput = arrListInput
+
+print (arrListOutput)