1.3 KiB
1.3 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3b31000cf542c50fec6 | 5 | Problem 71: Ordered fractions | 302184 | Задача 71: Упорядоченные фракции |
Description
Instructions
Tests
tests:
- text: <code>euler71()</code> should return 428570.
testString: assert.strictEqual(euler71(), 428570);
Challenge Seed
function euler71() {
// Good luck!
return true;
}
euler71();
Solution
// solution required