Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
1.4 KiB
1.4 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4771000cf542c50ff8a | 5 | false | 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() {
// Good luck!
return true;
}
euler267();
Solution
// solution required