freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-351-hexagonal-orcha...

55 lines
685 B
Markdown

---
id: 5900f4cb1000cf542c50ffde
challengeType: 5
title: 'Problem 351: Hexagonal orchards'
videoUrl: ''
localeTitle: 'Задача 351: Шестиугольные сады'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler351(), 11762187201804552, "<code>euler351()</code> should return 11762187201804552.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler351() {
// Good luck!
return true;
}
euler351();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>