chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,22 +1,22 @@
---
id: 5900f4a01000cf542c50ffb2
title: 问题307芯片缺陷
title: 'Problem 307: Chip Defects'
challengeType: 5
videoUrl: ''
forumTopicId: 301961
dashedName: problem-307-chip-defects
---
# --description--
k个缺陷随机分布在一家工厂生产的n个集成电路芯片中在芯片上可以发现任何数量的缺陷每个缺陷与其他缺陷无关
k defects are randomly distributed amongst n integrated-circuit chips produced by a factory (any number of defects may be found on a chip and each defect is independent of the other defects).
令pkn表示存在至少3个缺陷的芯片的概率。 例如p3.7)≈0.0204081633
Let p(k,n) represent the probability that there is a chip with at least 3 defects. For instance p(3,7) ≈ 0.0204081633.
找到p20,0001 000 000并以0.abcdefghij的形式将答案四舍五入到小数点后10位。
Find p(20 000, 1 000 000) and give your answer rounded to 10 decimal places in the form 0.abcdefghij
# --hints--
`euler307()`应该返回0.7311720251
`euler307()` should return 0.7311720251.
```js
assert.strictEqual(euler307(), 0.7311720251);