diff --git a/src/Python/Problems001-050/Problem032.py b/src/Python/Problems001-050/Problem032.py index 3640e05..1e7545c 100644 --- a/src/Python/Problems001-050/Problem032.py +++ b/src/Python/Problems001-050/Problem032.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python """ Created on 26 Feb 2021 @@ -19,7 +19,7 @@ def compute(): the digits 1 to n exactly once; for example, the 5-digit number, 15234, is 1 through 5 pandigital. - The product 7254 is unusual, as the identity, 39 × 186 = 7254, containing + The product 7254 is unusual, as the identity, 39 x 186 = 7254, containing multiplicand, multiplier, and product is 1 through 9 pandigital. Find the sum of all products whose multiplicand/multiplier/product identity @@ -29,10 +29,10 @@ def compute(): """ ans = set() - pandigital = ['1', '2', '3', '4', '5', '6', '7', '8', '9'] + pandigital = ["1", "2", "3", "4", "5", "6", "7", "8", "9"] for x in range(1, 100): - for y in range(100, 10000): + for y in range(100, 10_000): # product = x * y if sorted(str(x) + str(y) + str(x * y)) == pandigital: ans.add(x * y) @@ -41,5 +41,4 @@ def compute(): if __name__ == "__main__": - - print(f"Result for Problem 32: {compute()}") \ No newline at end of file + print(f"Result for Problem 32 is {compute()}")