aboutsummaryrefslogtreecommitdiff
path: root/challenge-047/paulo-custodio/python/ch-2.py
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <Mohammad.Anwar@yahoo.com>2024-08-31 22:33:08 +0100
committerGitHub <noreply@github.com>2024-08-31 22:33:08 +0100
commit8fa19c94e5d9ee672d72cb7c4aabf09cc2645435 (patch)
tree4ffa30f75a0236feeb059dd0d3229a2c4d798191 /challenge-047/paulo-custodio/python/ch-2.py
parent1d9c15f31a1dd6ff6f81bcd1f30d0f9d90c9b607 (diff)
parentafce98214cf5e95bd988575f103eac4216e77119 (diff)
downloadperlweeklychallenge-club-8fa19c94e5d9ee672d72cb7c4aabf09cc2645435.tar.gz
perlweeklychallenge-club-8fa19c94e5d9ee672d72cb7c4aabf09cc2645435.tar.bz2
perlweeklychallenge-club-8fa19c94e5d9ee672d72cb7c4aabf09cc2645435.zip
Merge pull request #10738 from pauloscustodio/master
Add Python solutions
Diffstat (limited to 'challenge-047/paulo-custodio/python/ch-2.py')
-rw-r--r--challenge-047/paulo-custodio/python/ch-2.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/challenge-047/paulo-custodio/python/ch-2.py b/challenge-047/paulo-custodio/python/ch-2.py
new file mode 100644
index 0000000000..a0a80f18bc
--- /dev/null
+++ b/challenge-047/paulo-custodio/python/ch-2.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python3
+
+# Challenge 047
+#
+# TASK #2
+# Gapful Number
+# Write a script to print first 20 Gapful Numbers greater than or equal to 100.
+# Please check out the page for more information about Gapful Numbers.
+
+def is_gapful(n):
+ n1 = int(str(n)[0])
+ n2 = int(str(n)[-1])
+ div = n1*10+n2
+ return n % div == 0
+
+out = []
+n = 100
+while len(out) < 20:
+ if is_gapful(n):
+ out.append(n)
+ n += 1
+print(", ".join([str(x) for x in out]))