aboutsummaryrefslogtreecommitdiff
path: root/challenge-250/sgreen/python/ch-2.py
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <Mohammad.Anwar@yahoo.com>2024-01-07 14:11:44 +0000
committerGitHub <noreply@github.com>2024-01-07 14:11:44 +0000
commita6368e3cd07bf057fda6f0d2ccfefcd4e32f8dcf (patch)
treeadf4b0d46e36320eb441d089ef9bcee7d3509961 /challenge-250/sgreen/python/ch-2.py
parentddc19ed5a251eb1b6123591a8594b4779eff7d38 (diff)
parent7b07d041a8c01b78ca1d311502b5e93b5d0a5153 (diff)
downloadperlweeklychallenge-club-a6368e3cd07bf057fda6f0d2ccfefcd4e32f8dcf.tar.gz
perlweeklychallenge-club-a6368e3cd07bf057fda6f0d2ccfefcd4e32f8dcf.tar.bz2
perlweeklychallenge-club-a6368e3cd07bf057fda6f0d2ccfefcd4e32f8dcf.zip
Merge pull request #9355 from simongreen-net/master
Simon's solution to challenge 250
Diffstat (limited to 'challenge-250/sgreen/python/ch-2.py')
-rwxr-xr-xchallenge-250/sgreen/python/ch-2.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/challenge-250/sgreen/python/ch-2.py b/challenge-250/sgreen/python/ch-2.py
new file mode 100755
index 0000000000..9ee64eea3f
--- /dev/null
+++ b/challenge-250/sgreen/python/ch-2.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python3
+
+import re
+import sys
+
+
+def calculate_value(s):
+ '''Return the number if it looks like an integer else the length of string'''
+ return int(s) if re.search(r'^\d+$', s) else len(s)
+
+
+def main(values):
+ print(max(map(calculate_value, values)))
+
+
+if __name__ == '__main__':
+ main(sys.argv[1:])