aboutsummaryrefslogtreecommitdiffstats
path: root/09-Special-Pythagorean-Triplet/pyth.py
diff options
context:
space:
mode:
authormjfernez <mjfernez@gmail.com>2020-02-09 17:07:06 -0500
committermjfernez <mjfernez@gmail.com>2020-02-09 17:07:06 -0500
commit3ab32fb2bb35283b74cedd96f961503004e27395 (patch)
tree458a2291668b5d3be403571b7e9808c8937eb76f /09-Special-Pythagorean-Triplet/pyth.py
parentc9a6a1b8a3ec380adaf74f0ce8d650e97e38f474 (diff)
downloadProject_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.py4
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