diff options
Diffstat (limited to 'challenge-134/paulo-custodio/python/ch-1.py')
| -rw-r--r-- | challenge-134/paulo-custodio/python/ch-1.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/challenge-134/paulo-custodio/python/ch-1.py b/challenge-134/paulo-custodio/python/ch-1.py new file mode 100644 index 0000000000..814125549b --- /dev/null +++ b/challenge-134/paulo-custodio/python/ch-1.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python3 + +# TASK #1 > Pandigital Numbers +# Submitted by: Mohammad S Anwar +# Write a script to generate first 5 Pandigital Numbers in base 10. +# +# As per the wikipedia, it says: +# +# A pandigital number is an integer that in a given base has among its +# significant digits each digit used in the base at least once. + +# solution from https://oeis.org/A050278 + +from itertools import permutations + +A050278 = [int(''.join(d)) for d in permutations('0123456789', 10) if d[0] != '0'] +A050278.sort() +for i in range(0, 5): + print(A050278[i]) |
