Solves problem 38 in less than one second.

Code is not that beautiful though.
This commit is contained in:
julien Lengrand-Lambert
2012-05-03 12:45:02 +02:00
parent 677494354e
commit a48b0ea435
6 changed files with 109 additions and 5 deletions

24
e_47.py Normal file
View File

@@ -0,0 +1,24 @@
#!/usr/bin/env python
'''
Created on 10 feb. 2012
@author: Julien Lengrand-Lambert
DESCRIPTION: Solves problem 47 of Project Euler
The first two consecutive numbers to have two distinct prime factors are:
14 = 2*7
15 = 3*5
The first three consecutive numbers to have three distinct prime factors are:
644 = 2^2 7 * 23
645 = 3 * 5 * 43
646 = 2 17 * 19.
Find the first four consecutive integers to have four distinct primes factors. What is the first of these numbers?
'''
if __name__ == '__main__':
print 1
#print "Answer : %d " % (last_ten())