--- id: 5900f4cf1000cf542c50ffe1 challengeType: 5 title: 'Problem 354: Distances in a bee"s honeycomb' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler354(), 58065134, "euler354() should return 58065134.");' ```
## Challenge Seed
```js function euler354() { // Good luck! return true; } euler354(); ```
## Solution
```js // solution required ```