freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-449-chocolate-cover...

55 lines
702 B
Markdown
Raw Normal View History

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