Solves Problem 8

Prepares Problem 9

Creates a bash script which will do templates for me
This commit is contained in:
Julien Lengrand-Lambert
2012-01-13 10:54:30 +01:00
parent 126205f97a
commit 3b6ce5578f
3 changed files with 75 additions and 14 deletions

24
e_9.py Executable file
View File

@@ -0,0 +1,24 @@
#!/usr/bin/env python
"""
##---
# jlengrand
#Created on : Fri Jan 13 10:49:29 CET 2012
#
# DESCRIPTION : Solves problem 9 of Project Euler
A Pythagorean triplet is a set of three natural numbers, a b c, for which,
a^2 + b^2 = c^2
For example, 3^2 + 4^2 = 9 + 16 = 25 = 5^2.
There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product abc.
##---
"""
def fun():
"""
"""
return 1
if __name__ == '__main__':
print "Answer : %d" % (fun())