diff options
author | mjfernez <mjfernez@gmail.com> | 2020-02-09 17:07:06 -0500 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2020-02-09 17:07:06 -0500 |
commit | 3ab32fb2bb35283b74cedd96f961503004e27395 (patch) | |
tree | 458a2291668b5d3be403571b7e9808c8937eb76f /09-Special-Pythagorean-Triplet/pyth.py | |
parent | c9a6a1b8a3ec380adaf74f0ce8d650e97e38f474 (diff) | |
download | Project_Euler_Solutions-3ab32fb2bb35283b74cedd96f961503004e27395.tar.gz |
Added solution for 09 in C
Diffstat (limited to '09-Special-Pythagorean-Triplet/pyth.py')
-rw-r--r-- | 09-Special-Pythagorean-Triplet/pyth.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/09-Special-Pythagorean-Triplet/pyth.py b/09-Special-Pythagorean-Triplet/pyth.py index a37f026..67c227d 100644 --- a/09-Special-Pythagorean-Triplet/pyth.py +++ b/09-Special-Pythagorean-Triplet/pyth.py @@ -5,10 +5,6 @@ # There exists exactly one Pythagorean triplet for which a + b + c = 1000. # Find the product abc. -import PIL -import math - - def isTriple(abc): if len(abc) > 3: return False |