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

700 B

id challengeType title videoUrl localeTitle
5900f3a61000cf542c50feb9 5 Problem 58: Spiral primes Problema 58: Primários Espirais

Description

undefined

Instructions

Tests

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

Challenge Seed

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

euler58();

Solution

// solution required