aboutsummaryrefslogtreecommitdiff
path: root/challenge-213/eric-cheung/python/ch-1.py
diff options
context:
space:
mode:
author冯昶 <fengchang@novel-supertv.com>2023-04-24 15:20:16 +0800
committer冯昶 <fengchang@novel-supertv.com>2023-04-24 15:20:16 +0800
commit41d1e582715466e4aa27fbb99e1591afa707fa78 (patch)
tree6affcdf0e5c02371adac673aeda0c4d14a81d974 /challenge-213/eric-cheung/python/ch-1.py
parent64b7c608210e55b5564fe44df68d1eacf6d25969 (diff)
parent9df2d961ae00534346eaaceffaf8cfee4ecc88bb (diff)
downloadperlweeklychallenge-club-41d1e582715466e4aa27fbb99e1591afa707fa78.tar.gz
perlweeklychallenge-club-41d1e582715466e4aa27fbb99e1591afa707fa78.tar.bz2
perlweeklychallenge-club-41d1e582715466e4aa27fbb99e1591afa707fa78.zip
Merge remote-tracking branch 'upstream/master'
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)