Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/rosetta-code/emirp-primes.chinese.md
2020-08-16 04:45:18 +05:30

2.0 KiB
Raw Blame History

title, id, challengeType, videoUrl, localeTitle
title id challengeType videoUrl localeTitle
Emirp primes 599d0ba974141b0f508b37d5 5 Emirp奖金

Description

一个emirp向后拼写的主要拼写是素数当它们被反转时在它们的十进制表示中是一个不同的素数。

编写应能功能:显示前n eprimes numbers.Show在range.Show的eprimes数字eprimes的在range.Show n eprimes数目。

该函数应该有两个参数。第一个将接收n或作为数组的范围。第二个将接收一个布尔值它指定函数是否将eprimes作为数组或单个数字范围中的素数或第n 素数)返回。根据参数,函数应返回数组或数字。

Instructions

Tests

tests:
  - text: <code>emirps</code>是一个功能。
    testString: assert(typeof emirps === 'function');
  - text: '<code>emirps(20,true)</code>应该返回<code>[13,17,31,37,71,73,79,97,107,113,149,157,167,179,199,311,337,347,359,389]</code>'
    testString: assert.deepEqual(emirps(20, true), [13, 17, 31, 37, 71, 73, 79, 97, 107, 113, 149, 157, 167, 179, 199, 311, 337, 347, 359, 389]);
  - text: <code>emirps(10000)</code>应该返回<code>948349</code>
    testString: assert.deepEqual(emirps(1000), 70529);
  - text: '<code>emirps([7700,8000],true)</code>应该返回<code>[7717,7757,7817,7841,7867,7879,7901,7927,7949,7951,7963]</code>'
    testString: assert.deepEqual(emirps([7700, 8000], true), [7717, 7757, 7817, 7841, 7867, 7879, 7901, 7927, 7949, 7951, 7963]);
  - text: '<code>emirps([7700,8000],true)</code>应该返回<code>11</code>'
    testString: assert.deepEqual(emirps([7700, 8000], false), 11);

Challenge Seed

function emirps(n) {
  // Good luck!
}

Solution

// solution required