aboutsummaryrefslogtreecommitdiff
path: root/challenge-287/luca-ferrari/python/ch-1.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-287/luca-ferrari/python/ch-1.py')
-rw-r--r--challenge-287/luca-ferrari/python/ch-1.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/challenge-287/luca-ferrari/python/ch-1.py b/challenge-287/luca-ferrari/python/ch-1.py
new file mode 100644
index 0000000000..2fbe66f7b9
--- /dev/null
+++ b/challenge-287/luca-ferrari/python/ch-1.py
@@ -0,0 +1,25 @@
+#!python
+
+#
+# Perl Weekly Challenge 287
+# Task 1
+#
+# See <https://perlweeklychallenge.org/blog/perl-weekly-challenge-287>
+#
+
+import sys
+import re
+
+# task implementation
+# the return value will be printed
+def task_1( args ):
+ password = args[ 0 ]
+ lc = re.compile( '[a-z]' )
+ uc = re.compile( '[A-Z]' )
+ dg = re.compile( '[0-9]' )
+ wrong = re.compile( '(.)\\1\\1' )
+ return lc.search( password ) and uc.search( password ) and dg.search( password ) and wrong.search( password ) is None
+
+# invoke the main without the command itself
+if __name__ == '__main__':
+ print( task_1( sys.argv[ 1: ] ) )