--- id: 5900f4291000cf542c50ff3c challengeType: 5 title: 'Problem 189: Tri-colouring a triangular grid' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler189(), 10834893628237824, "euler189() should return 10834893628237824.");' ```
## Challenge Seed
```js function euler189() { // Good luck! return true; } euler189(); ```
## Solution
```js // solution required ```