--- id: 5900f4521000cf542c50ff64 challengeType: 5 title: 'Problem 229: Four Representations using Squares' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler229(), 11325263, "euler229() should return 11325263.");' ```
## Challenge Seed
```js function euler229() { // Good luck! return true; } euler229(); ```
## Solution
```js // solution required ```