aboutsummaryrefslogtreecommitdiff
path: root/challenge-250/eric-cheung/python/ch-2.py
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2024-01-01 14:44:14 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2024-01-01 14:44:14 +0000
commit35cd0ec65acdd3a2c925c3a5d3a193bd307cdc5a (patch)
treee270530cc19dd2ca16532fc6caf5d8c5f035f8a6 /challenge-250/eric-cheung/python/ch-2.py
parent0bea5e0b6e1e3bdc0906981495ebd9dd4cfc707e (diff)
downloadperlweeklychallenge-club-35cd0ec65acdd3a2c925c3a5d3a193bd307cdc5a.tar.gz
perlweeklychallenge-club-35cd0ec65acdd3a2c925c3a5d3a193bd307cdc5a.tar.bz2
perlweeklychallenge-club-35cd0ec65acdd3a2c925c3a5d3a193bd307cdc5a.zip
- Added solutions by David Ferrone.
- Added solutions by PokGoPun. - Added solutions by Stephen G Lynn. - Added solutions by Mark Anderson. - Added solutions by Thomas Kohler. - Added solutions by Peter Meszaros. - Added solutions by Bob Lied.
Diffstat (limited to 'challenge-250/eric-cheung/python/ch-2.py')
-rwxr-xr-xchallenge-250/eric-cheung/python/ch-2.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/challenge-250/eric-cheung/python/ch-2.py b/challenge-250/eric-cheung/python/ch-2.py
new file mode 100755
index 0000000000..43a7617ff9
--- /dev/null
+++ b/challenge-250/eric-cheung/python/ch-2.py
@@ -0,0 +1,9 @@
+
+def GetAlphaNumLen (strInput):
+ return int(strInput) if strInput.isnumeric() else len(strInput)
+
+## arrAlphaNumStr = ["perl", "2", "000", "python", "r4ku"] ## Example 1
+arrAlphaNumStr = ["001", "1", "000", "0001"] ## Example 2
+
+arrOutput = [GetAlphaNumLen(strLoop) for strLoop in arrAlphaNumStr]
+print (max(arrOutput))