--- id: 5900f47e1000cf542c50ff90 challengeType: 5 title: 'Problem 273: Sum of Squares' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler273(), 2032447591196869000, "euler273() should return 2032447591196869000.");' ```
## Challenge Seed
```js function euler273() { // Good luck! return true; } euler273(); ```
## Solution
```js // solution required ```