Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-291-panaitopol-primes.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

803 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f48f1000cf542c50ffa2 5 Problem 291: Panaitopol Primes 问题291Panaitopol素数

Description

如果对于某些正整数x和y素数p称为Panaitopol素数。

找出多少个Panaitopol素数小于5×1015。

Instructions

Tests

tests:
  - text: <code>euler291()</code>应该返回4037526。
    testString: assert.strictEqual(euler291(), 4037526);

Challenge Seed

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

euler291();

Solution

// solution required

/section>