diff options
| author | Lubos Kolouch <lubos@kolouch.net> | 2024-09-16 09:41:35 +0200 |
|---|---|---|
| committer | Lubos Kolouch <lubos@kolouch.net> | 2024-09-16 09:41:35 +0200 |
| commit | 65b9d6b25e0a823ca7ab6d15744ff98eb3697471 (patch) | |
| tree | fcbcdebd50e3e146dfecf519701ec04b191053eb /challenge-286/eric-cheung/python/ch-2.py | |
| parent | bd1fe7ae50ca42bda58c134b9edfdc287fb3f386 (diff) | |
| parent | 68e321dd32a834f54b55d5e8924f04358e41cf1f (diff) | |
| download | perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.tar.gz perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.tar.bz2 perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'challenge-286/eric-cheung/python/ch-2.py')
| -rwxr-xr-x | challenge-286/eric-cheung/python/ch-2.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/challenge-286/eric-cheung/python/ch-2.py b/challenge-286/eric-cheung/python/ch-2.py new file mode 100755 index 0000000000..16b6e9bfa6 --- /dev/null +++ b/challenge-286/eric-cheung/python/ch-2.py @@ -0,0 +1,15 @@ +
+def GetNumMinMax (arrGiven, bIsMax = True):
+ return sorted(arrGiven, reverse = bIsMax)[0]
+
+def GetLastElem (arrInput):
+ if len(arrInput) == 2:
+ return GetNumMinMax(arrInput, False)
+
+ return GetLastElem ([GetNumMinMax(arrInput[nLoop * 2: (nLoop + 1) * 2], nLoop % 2 == 1) for nLoop in range(0, int(len(arrInput) / 2))])
+
+## arrInts = [2, 1, 4, 5, 6, 3, 0, 2] ## Example 1
+## arrInts = [0, 5, 3, 2] ## Example 2
+arrInts = [9, 2, 1, 4, 5, 6, 0, 7, 3, 1, 3, 5, 7, 9, 0, 8] ## Example 3
+
+print (GetLastElem (arrInts))
|
