freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-475-music-festival....

55 lines
610 B
Markdown
Raw Normal View History

---
id: 5900f5481000cf542c51005a
challengeType: 5
title: 'Problem 475: Music festival'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler475(), 75780067, "<code>euler475()</code> should return 75780067.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler475() {
// Good luck!
return true;
}
euler475();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>