1.4 KiB
1.4 KiB
id, challengeType, title, forumTopicId
id | challengeType | title | forumTopicId |
---|---|---|---|
5900f4771000cf542c50ff8a | 5 | Problem 267: Billionaire | 301916 |
Description
Instructions
Tests
tests:
- text: <code>euler267()</code> should return 0.999992836187.
testString: assert.strictEqual(euler267(), 0.999992836187);
Challenge Seed
function euler267() {
return true;
}
euler267();
Solution
// solution required