Sha256: be950095de2f9eab116ac502c0b2aa1409f8daa4994b563c06349cccfd5cff64
Contents?: true
Size: 988 Bytes
Versions: 49
Compression:
Stored size: 988 Bytes
Contents
# Pythagorean Triplet A Pythagorean triplet is a set of three natural numbers, {a, b, c}, for which, ``` a**2 + b**2 = c**2 ``` For example, ``` 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 ``` In the test suites all tests but the first have been skipped. Once you get a test passing, you can enable the next one by changing `xit` to `it`. ## 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
49 entries across 49 versions & 1 rubygems