--- id: 5900f4771000cf542c50ff8a challengeType: 5 title: 'Problem 267: Billionaire' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler267(), 0.999992836187, "euler267() should return 0.999992836187.");' ```
## Challenge Seed
```js function euler267() { // Good luck! return true; } euler267(); ```
## Solution
```js // solution required ```