--- id: 5900f4751000cf542c50ff87 challengeType: 5 title: 'Problem 264: Triangle Centres' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler264(), 2816417.1055, "euler264() should return 2816417.1055.");' ```
## Challenge Seed
```js function euler264() { // Good luck! return true; } euler264(); ```
## Solution
```js // solution required ```