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