--- id: 5900f5481000cf542c51005a challengeType: 5 title: 'Problem 475: Music festival' videoUrl: '' localeTitle: 'Problema 475: festival de música' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler475(), 75780067, "euler475() should return 75780067.");' ```
## Challenge Seed
```js function euler475() { // Good luck! return true; } euler475(); ```
## Solution
```js // solution required ```