2.1 KiB
2.1 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4771000cf542c50ff8a | 5 | Problem 267: Billionaire | 301916 | Проблема 267: Миллиардер |
Description
Instructions
Tests
tests:
- text: <code>euler267()</code> should return 0.999992836187.
testString: assert.strictEqual(euler267(), 0.999992836187);
Challenge Seed
function euler267() {
// Good luck!
return true;
}
euler267();
Solution
// solution required