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,20 +1,22 @@
---
id: 5900f4411000cf542c50ff54
title: 问题213跳蚤马戏团
title: 'Problem 213: Flea Circus'
challengeType: 5
videoUrl: ''
forumTopicId: 301855
dashedName: problem-213-flea-circus
---
# --description--
一个30×30的正方形网格包含900个跳蚤最初是每平方一个跳蚤。当响铃响起时每个跳蚤随机跳到相邻的广场通常有4种可能除了网格边缘或角落处的跳蚤
A 30×30 grid of squares contains 900 fleas, initially one flea per square.
在响铃50次后预计的未占用方格数量是多少将您的答案四舍五入到小数点后六位。
When a bell is rung, each flea jumps to an adjacent square at random (usually 4 possibilities, except for fleas on the edge of the grid or at the corners).
What is the expected number of unoccupied squares after 50 rings of the bell? Give your answer rounded to six decimal places.
# --hints--
`euler213()`应返回330.721154
`euler213()` should return 330.721154.
```js
assert.strictEqual(euler213(), 330.721154);