aboutsummaryrefslogtreecommitdiff
path: root/challenge-049/paulo-custodio/python/ch-1.py
diff options
context:
space:
mode:
author冯昶 <fengchang@novel-supertv.com>2024-09-02 15:40:05 +0800
committer冯昶 <fengchang@novel-supertv.com>2024-09-02 15:40:05 +0800
commit0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8 (patch)
treed963a7fe57782d1d25580ea05c96f969768e8067 /challenge-049/paulo-custodio/python/ch-1.py
parent30a42138e1d8bdd2f174e06fb18515ced0b2b241 (diff)
parent0512711fccf91c731495f1dd901349cc900ec299 (diff)
downloadperlweeklychallenge-club-0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8.tar.gz
perlweeklychallenge-club-0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8.tar.bz2
perlweeklychallenge-club-0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'challenge-049/paulo-custodio/python/ch-1.py')
-rw-r--r--challenge-049/paulo-custodio/python/ch-1.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/challenge-049/paulo-custodio/python/ch-1.py b/challenge-049/paulo-custodio/python/ch-1.py
new file mode 100644
index 0000000000..edad0e1069
--- /dev/null
+++ b/challenge-049/paulo-custodio/python/ch-1.py
@@ -0,0 +1,27 @@
+#!/usr/bin/env python3
+
+# Challenge 049
+#
+# TASK #1
+# Smallest Multiple
+# Write a script to accept a positive number as command line argument and print
+# the smallest multiple of the given number consists of digits 0 and 1.
+#
+# For example:
+#
+# For given number 55, the smallest multiple is 110 consisting of digits 0 and 1.
+
+import re
+import sys
+
+def smallest_multiple(n):
+ p = 1
+ while not is_zeros_ones(n*p):
+ p += 1
+ return n*p
+
+def is_zeros_ones(n):
+ return re.search(r'^[01]+$', str(n))
+
+n = int(sys.argv[1])
+print(smallest_multiple(n))