--- id: 5900f4801000cf542c50ff93 challengeType: 5 title: 'Problem 276: Primitive Triangles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler276(), 5777137137739633000, "euler276() should return 5777137137739633000.");' ```
## Challenge Seed
```js function euler276() { // Good luck! return true; } euler276(); ```
## Solution
```js // solution required ```