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