1.1 KiB
1.1 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f44e1000cf542c50ff5f | 5 | Problem 224: Almost right-angled triangles II | 301867 | Задача 224: Почти прямоугольные треугольники II |
Description
Сколько едва туманных треугольников там с периметром ≤ 75 000 000?
Instructions
Tests
tests:
- text: <code>euler224()</code> should return 4137330.
testString: assert.strictEqual(euler224(), 4137330);
Challenge Seed
function euler224() {
// Good luck!
return true;
}
euler224();
Solution
// solution required