diff options
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 |