Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-291-panaitopol-primes.spanish.md
2018-10-11 02:15:05 +05:30

908 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f48f1000cf542c50ffa2 5 Problem 291: Panaitopol Primes Problema 291: Panaitopol Primes

Description

Un número primo p se llama un primo de Panaitopol si para algunos enteros positivos e y.

Encuentra cuántos primos de Panaitopol son menores que 5 × 1015.

Instructions

Tests

tests:
  - text: <code>euler291()</code> debe devolver 4037526.
    testString: 'assert.strictEqual(euler291(), 4037526, "<code>euler291()</code> should return 4037526.");'

Challenge Seed

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

euler291();

Solution

// solution required