From 3ab32fb2bb35283b74cedd96f961503004e27395 Mon Sep 17 00:00:00 2001 From: mjfernez Date: Sun, 9 Feb 2020 17:07:06 -0500 Subject: Added solution for 09 in C --- 09-Special-Pythagorean-Triplet/pyth.py | 4 ---- 1 file changed, 4 deletions(-) (limited to '09-Special-Pythagorean-Triplet/pyth.py') 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 -- cgit v1.2.3