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,34 +1,34 @@
---
id: 5900f5221000cf542c510033
title: 问题436不公平的赌注
title: 'Problem 436: Unfair wager'
challengeType: 5
videoUrl: ''
forumTopicId: 302107
dashedName: problem-436-unfair-wager
---
# --description--
朱莉向妹妹路易丝提出以下赌注。
Julie proposes the following wager to her sister Louise.
她建议他们玩一场机会游戏,以确定谁来洗碗。
She suggests they play a game of chance to determine who will wash the dishes.
对于此游戏他们应使用独立随机数的生成器该生成器均匀分布在0和1之间。
For this game, they shall use a generator of independent random numbers uniformly distributed between 0 and 1.
游戏从S = 0开始。
The game starts with S = 0.
第一个玩家路易丝Louise向生成器添加了S个不同的随机数直到S> 1并记录了她的最后一个随机数'x'
The first player, Louise, adds to S different random numbers from the generator until S > 1 and records her last random number 'x'.
第二个玩家朱莉继续从生成器中添加S个不同的随机数直到S> 2并记录她的最后一个随机数“ y”。
The second player, Julie, continues adding to S different random numbers from the generator until S > 2 and records her last random number 'y'.
拥有最高数字的玩家获胜而输家则洗碗如果y> x则第二名玩家获胜。
The player with the highest number wins and the loser washes the dishes, i.e. if y > x the second player wins.
例如如果第一个玩家抽出0.62和0.44,则第一个玩家回合结束,因为0.62 + 0.44> 1x = 0.44。 如果第二名玩家抽出0.10.27和0.91,则第二名玩家回合结束,因为0.62 + 0.44 + 0.1 + 0.27 + 0.91> 2y = 0.91。 由于y> x第二名玩家获胜。
For example, if the first player draws 0.62 and 0.44, the first player turn ends since 0.62+0.44 > 1 and x = 0.44. If the second players draws 0.1, 0.27 and 0.91, the second player turn ends since 0.62+0.44+0.1+0.27+0.91 > 2 and y = 0.91. Since y > x, the second player wins.
路易丝考虑了一秒钟,然后反对:“那不公平”。 第二名玩家获胜的概率是多少? 以0.abcdefghij的形式将答案四舍五入到小数点后10位。
Louise thinks about it for a second, and objects: "That's not fair". What is the probability that the second player wins? Give your answer rounded to 10 places behind the decimal point in the form 0.abcdefghij
# --hints--
`euler436()`应该返回0.5276662759
`euler436()` should return 0.5276662759.
```js
assert.strictEqual(euler436(), 0.5276662759);