freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-239-twenty-two-fool...

783 B
Raw Blame History

id title challengeType videoUrl dashedName
5900f45c1000cf542c50ff6e 问题239二十二个愚蠢的素数 5 problem-239-twenty-two-foolish-primes

--description--

编号为1到100的一组磁盘以随机顺序排列成一行。

我们有一个部分紊乱的概率是多少这样才能确定22个素数盘远离它们的自然位置 (任何数量的非主要磁盘也可以在其自然位置内或外找到。)

将答案四舍五入到小数点后面的12位格式为0.abcdefghijkl。

--hints--

euler239()应该返回0.001887854841。

assert.strictEqual(euler239(), 0.001887854841);

--seed--

--seed-contents--

function euler239() {

  return true;
}

euler239();

--solutions--

// solution required