1.1 KiB
1.1 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4841000cf542c50ff96 | 5 | Problem 279: Triangles with integral sides and an integral angle | 301929 | Задача 279: Треугольники с целыми сторонами и интегральный угол |
Description
Instructions
Tests
tests:
- text: <code>euler279()</code> should return 416577688.
testString: assert.strictEqual(euler279(), 416577688);
Challenge Seed
function euler279() {
// Good luck!
return true;
}
euler279();
Solution
// solution required