--- id: 5900f52d1000cf542c510040 challengeType: 5 title: 'Problem 449: Chocolate covered candy' videoUrl: '' localeTitle: 'Задача 449: конфеты с шоколадным покрытием' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler449(), 103.37870096, "euler449() should return 103.37870096.");' ```
## Challenge Seed
```js function euler449() { // Good luck! return true; } euler449(); ```
## Solution
```js // solution required ```