--- id: 5900f44e1000cf542c50ff5f challengeType: 5 title: 'Problem 224: Almost right-angled triangles II' videoUrl: '' localeTitle: 'Problema 224: Triângulos quase retos II' --- ## Description
Vamos chamar um triângulo de lados inteiros com lados a ≤ b ≤ c mal obtuso se os lados satisfizerem a2 + b2 = c2 - 1.

Quantos triângulos mal obtusos existem com perímetro ≤ 75.000.000?

## Instructions
## Tests
```yml tests: - text: euler224() deve retornar 4137330. testString: 'assert.strictEqual(euler224(), 4137330, "euler224() should return 4137330.");' ```
## Challenge Seed
```js function euler224() { // Good luck! return true; } euler224(); ```
## Solution
```js // solution required ```