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

55 lines
702 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
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>