Sha256: e7bb4f603c494ccfcd95c4e9b2352d077e63df9a20953bd894eae574b9ebc39a
Contents?: true
Size: 848 Bytes
Versions: 71
Compression:
Stored size: 848 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 setup instructions for TypeScript to install the necessary dependencies: http://exercism.io/languages/typescript ## Requirements Install assignment dependencies: ```bash $ yarn install ``` ## Making the test suite pass Execute the tests with: ```bash $ yarn test ``` ## 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
71 entries across 71 versions & 1 rubygems