--- id: 5900f4c81000cf542c50ffdb challengeType: 5 title: 'Problem 348: Sum of a square and a cube' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler348(), 1004195061, "euler348() should return 1004195061.");' ```
## Challenge Seed
```js function euler348() { // Good luck! return true; } euler348(); ```
## Solution
```js // solution required ```