mirror of
https://github.com/jlengrand/project_euler.git
synced 2026-03-10 08:41:20 +00:00
Solves Problem 8
Prepares Problem 9 Creates a bash script which will do templates for me
This commit is contained in:
24
e_9.py
Executable file
24
e_9.py
Executable 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())
|
||||
Reference in New Issue
Block a user