From c7ee461c41c0b7889dbe89b403935b960d49a31d Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Sat, 31 Aug 2024 15:35:44 +0100 Subject: Add Python solution to challenge 047 --- challenge-047/paulo-custodio/python/ch-2.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 challenge-047/paulo-custodio/python/ch-2.py (limited to 'challenge-047/paulo-custodio/python/ch-2.py') 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])) -- cgit