project_euler.problem_033.sol1

Problem 33: https://projecteuler.net/problem=33

The fraction 49/98 is a curious fraction, as an inexperienced mathematician in attempting to simplify it may incorrectly believe that 49/98 = 4/8, which is correct, is obtained by cancelling the 9s.

We shall consider fractions like, 30/50 = 3/5, to be trivial examples.

There are exactly four non-trivial examples of this type of fraction, less than one in value, and containing two digits in the numerator and denominator.

If the product of these four fractions is given in its lowest common terms, find the value of the denominator.

Functions

fraction_list(→ list[str])

is_digit_cancelling(→ bool)

solution(→ int)

Return the solution to the problem

Module Contents

project_euler.problem_033.sol1.fraction_list(digit_len: int) list[str]
>>> fraction_list(2)
['16/64', '19/95', '26/65', '49/98']
>>> fraction_list(3)
['16/64', '19/95', '26/65', '49/98']
>>> fraction_list(4)
['16/64', '19/95', '26/65', '49/98']
>>> fraction_list(0)
[]
>>> fraction_list(5)
['16/64', '19/95', '26/65', '49/98']
project_euler.problem_033.sol1.is_digit_cancelling(num: int, den: int) bool
project_euler.problem_033.sol1.solution(n: int = 2) int

Return the solution to the problem