2018-09-30 23:01:58 +01:00
---
id: 5900f3b71000cf542c50feca
challengeType: 5
2020-05-21 17:31:25 +02:00
isHidden: false
2018-09-30 23:01:58 +01:00
title: 'Problem 75: Singular integer right triangles'
2019-08-05 09:17:33 -07:00
forumTopicId: 302188
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
2020-02-28 21:39:47 +09:00
2018-09-30 23:01:58 +01:00
It turns out that 12 cm is the smallest length of wire that can be bent to form an integer sided right angle triangle in exactly one way, but there are many more examples.
2020-02-28 21:39:47 +09:00
< div style = 'margin-left: 4em;' >
< strong > 12 cm:< / strong > (3,4,5)< br >
< strong > 24 cm:< / strong > (6,8,10)< br >
< strong > 30 cm:< / strong > (5,12,13)< br >
< strong > 36 cm:< / strong > (9,12,15)< br >
< strong > 40 cm:< / strong > (8,15,17)< br >
< strong > 48 cm:< / strong > (12,16,20)< br >
< / div >
2018-09-30 23:01:58 +01:00
In contrast, some lengths of wire, like 20 cm, cannot be bent to form an integer sided right angle triangle, and other lengths allow more than one solution to be found; for example, using 120 cm it is possible to form exactly three different integer sided right angle triangles.
2020-02-28 21:39:47 +09:00
< div style = 'margin-left: 4em;' >
< strong > 120 cm:< / strong > (30,40,50), (20,48,52), (24,45,51)
< / div >
2018-09-30 23:01:58 +01:00
Given that L is the length of the wire, for how many values of L ≤ 1,500,000 can exactly one integer sided right angle triangle be formed?
2020-02-28 21:39:47 +09:00
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2020-02-28 21:39:47 +09:00
- text: < code > singularIntRightTriangles()</ code > should return a number.
testString: assert(typeof singularIntRightTriangles() === 'number');
- text: < code > singularIntRightTriangles()</ code > should return 161667.
testString: assert.strictEqual(singularIntRightTriangles(), 161667);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
2020-02-28 21:39:47 +09:00
function singularIntRightTriangles() {
2018-09-30 23:01:58 +01:00
// Good luck!
return true;
}
2020-02-28 21:39:47 +09:00
singularIntRightTriangles();
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
// solution required
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
< / section >