--- id: 5900f3e71000cf542c50fefa challengeType: 5 title: 'Problem 123: Prime square remainders' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler123(), 21035, "euler123() should return 21035.");' ```
## Challenge Seed
```js function euler123() { // Good luck! return true; } euler123(); ```
## Solution
```js // solution required ```