1.5 KiB
Raw Blame History

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

--description--

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

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

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

--hints--

emirps是一个功能。

assert(typeof emirps === 'function');

emirps(20,true)应该返回[13,17,31,37,71,73,79,97,107,113,149,157,167,179,199,311,337,347,359,389]

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
]);

emirps(10000)应该返回948349

assert.deepEqual(emirps(1000), 70529);

emirps([7700,8000],true)应该返回[7717,7757,7817,7841,7867,7879,7901,7927,7949,7951,7963]

assert.deepEqual(emirps([7700, 8000], true), [
  7717,
  7757,
  7817,
  7841,
  7867,
  7879,
  7901,
  7927,
  7949,
  7951,
  7963
]);

emirps([7700,8000],true)应该返回11

assert.deepEqual(emirps([7700, 8000], false), 11);

--solutions--