--- id: 5900f4551000cf542c50ff68 challengeType: 5 title: 'Problem 233: Lattice points on a circle' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler233(), 271204031455541300, "euler233() should return 271204031455541300.");' ```
## Challenge Seed
```js function euler233() { // Good luck! return true; } euler233(); ```
## Solution
```js // solution required ```