Sha256: fb4b91083292165e5980cbfbef16bd1299e6f64bca7ab5550bf0394be31aefbe
Contents?: true
Size: 659 Bytes
Versions: 75
Compression:
Stored size: 659 Bytes
Contents
# Pythagorean Triplet A Pythagorean triplet is a set of three natural numbers, {a, b, c}, for which, ```text a**2 + b**2 = c**2 ``` For example, ```text 3**2 + 4**2 = 9 + 16 = 25 = 5**2. ``` There exists exactly one Pythagorean triplet for which a + b + c = 1000. Find the product a * b * c. ## Setup Go through the project setup instructions for Xcode using Swift: http://exercism.io/languages/swift ## Source Problem 9 at Project Euler [http://projecteuler.net/problem=9](http://projecteuler.net/problem=9) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
75 entries across 75 versions & 1 rubygems