Solves Problem 33 (coin change). Adds some new problems

This commit is contained in:
julien Lengrand-Lambert
2012-05-02 09:05:08 +02:00
parent f09f83e0a4
commit a00fe0fab3
6 changed files with 116 additions and 2 deletions

16
e_33.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python
'''
Created on 10 feb. 2012
@author: Julien Lengrand-Lambert
DESCRIPTION: Solves problem 33 of Project Euler
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.
'''
if __name__ == '__main__':
#print "Answer : %d " % (last_ten())