-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem33.py
More file actions
49 lines (44 loc) · 1.71 KB
/
problem33.py
File metadata and controls
49 lines (44 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# project euler problem 33
# http://projecteuler.net/problem=33
'''
DESCRIPTION
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.
'''
def gcd(a, b):
if a < b:
a, b = b, a
while a % b != 0:
a, b = b, a%b
return b
denominator = []
numerator = []
for a in xrange(11, 100):
a_tens = a / 10
a_units = a % 10
for b in xrange(11, 100):
b_tens = b / 10
b_units = b % 10
if a < b and a_units != 0:
if a_tens == b_tens:
if b_units * a == b * a_units:
numerator.append(a)
denominator.append(b)
if a_tens == b_units:
if b_tens * a == a_units * b:
numerator.append(a)
denominator.append(b)
if a_units == b_tens:
if a_tens * b == a * b_units:
numerator.append(a)
denominator.append(b)
if a_units == b_units:
if a_tens * b == a * b_tens:
numerator.append(a)
denominator.append(b)
print numerator, denominator
print reduce(lambda x,y:x*y, denominator) / gcd(reduce(lambda x,y:x*y, numerator), reduce(lambda x,y:x*y, denominator))