--- id: 5900f3a61000cf542c50feb9 challengeType: 5 title: 'Problem 58: Spiral primes' videoUrl: '' localeTitle: 'Problema 58: Primários Espirais' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: euler58() deve retornar 26241. testString: 'assert.strictEqual(euler58(), 26241, "euler58() should return 26241.");' ```
## Challenge Seed
```js function euler58() { // Good luck! return true; } euler58(); ```
## Solution
```js // solution required ```