mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-26 13:01:43 -04:00
892 B
892 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f44e1000cf542c50ff5f | Завдання 224: Майже прямокутні трикутники II | 1 | 301867 | problem-224-almost-right-angled-triangles-ii |
--description--
Назвімо трикутник з цілими сторонами a ≤ b ≤ c ледь тупим, якщо сторони задовольняють рівність a^2 + b^2 = c^2 - 1.
Скільки ледь тупих трикутників мають периметр ≤ 75\\,000\\,000?
--hints--
almostRightAngledTrianglesTwo() має повернути 4137330.
assert.strictEqual(almostRightAngledTrianglesTwo(), 4137330);
--seed--
--seed-contents--
function almostRightAngledTrianglesTwo() {
return true;
}
almostRightAngledTrianglesTwo();
--solutions--
// solution required