--- id: 5900f4a81000cf542c50ffbb challengeType: 5 title: 'Problem 316: Numbers in decimal expansions' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler316(), 542934735751917760, "euler316() should return 542934735751917760.");' ```
## Challenge Seed
```js function euler316() { // Good luck! return true; } euler316(); ```
## Solution
```js // solution required ```