1.6 KiB
1.6 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3ca1000cf542c50fedd | 5 | Problem 94: Almost equilateral triangles | 302211 | Проблема 94: Почти равносторонние треугольники |
Description
Instructions
Tests
tests:
- text: <code>euler94()</code> should return 518408346.
testString: assert.strictEqual(euler94(), 518408346);
Challenge Seed
function euler94() {
// Good luck!
return true;
}
euler94();
Solution
// solution required