aboutsummaryrefslogtreecommitdiff
path: root/challenge-047/paulo-custodio/python/ch-2.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-047/paulo-custodio/python/ch-2.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-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]))