2018-10-10 18:03:03 -04:00
---
id: 5900f44e1000cf542c50ff5f
challengeType: 5
title: 'Problem 224: Almost right-angled triangles II'
2019-08-28 16:26:13 +03:00
forumTopicId: 301867
2018-10-10 18:03:03 -04:00
localeTitle: 'Задача 224: Почти прямоугольные треугольники II'
---
## Description
2019-08-28 16:26:13 +03:00
<section id='description'>
Назовем целочисленный односторонний треугольник с о сторонами a ≤ b ≤ c едва тупой, если стороны удовлетворяют a2 + b2 = c2 - 1. <p> Сколько едва туманных треугольников там с периметром ≤ 75 000 000? </p>
</section>
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
<section id='instructions'>
2018-10-10 18:03:03 -04:00
</section>
## Tests
<section id='tests'>
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: <code>euler224()</code> should return 4137330.
testString: assert.strictEqual(euler224(), 4137330);
2018-10-10 18:03:03 -04:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler224() {
// Good luck!
return true;
}
euler224();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
</section>