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