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