* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
41 lines
881 B
Markdown
41 lines
881 B
Markdown
---
|
|
id: 5900f41c1000cf542c50ff2f
|
|
title: 'Problem 176: Right-angled triangles that share a cathetus'
|
|
challengeType: 5
|
|
forumTopicId: 301811
|
|
dashedName: problem-176-right-angled-triangles-that-share-a-cathetus
|
|
---
|
|
|
|
# --description--
|
|
|
|
The four right-angled triangles with sides (9,12,15), (12,16,20), (5,12,13) and (12,35,37) all have one of the shorter sides (catheti) equal to 12. It can be shown that no other integer sided right-angled triangle exists with one of the catheti equal to 12.
|
|
|
|
Find the smallest integer that can be the length of a cathetus of exactly 47547 different integer sided right-angled triangles.
|
|
|
|
# --hints--
|
|
|
|
`euler176()` should return 96818198400000.
|
|
|
|
```js
|
|
assert.strictEqual(euler176(), 96818198400000);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
function euler176() {
|
|
|
|
return true;
|
|
}
|
|
|
|
euler176();
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
// solution required
|
|
```
|