freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-300-protein-folding...

55 lines
625 B
Markdown

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