freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-58-spiral-primes.ar...

598 B

id challengeType title videoUrl localeTitle
5900f3a61000cf542c50feb9 5 Problem 58: Spiral primes

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler58(), 26241, "<code>euler58()</code> should return 26241.");'

Challenge Seed

function euler58() {
  // Good luck!
  return true;
}

euler58();

Solution

// solution required