chore(i18n,curriculum): processed translations - new ukrainian (#44447)

This commit is contained in:
camperbot
2021-12-10 11:14:24 +05:30
committed by GitHub
parent 8651ee1797
commit 0473dedf47
1663 changed files with 156692 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
---
id: 5900f4411000cf542c50ff54
title: 'Завдання 213: Блошиний цирк'
challengeType: 5
forumTopicId: 301855
dashedName: problem-213-flea-circus
---
# --description--
На сітці 30×30 знаходиться 900 бліх, тобто одна блоха на квадрат.
Коли дзвонить дзвінок, кожна блоха стрибає на випадковий суміжний квадрат (4 варіанти, за винятком бліх на квадратах у кутках).
Скільки залишитися пустих квадратів після 50 дзвінків? Дайте відповідь, округлену до 6 знаків після коми.
# --hints--
`fleaCircus()` має повернути `330.721154`.
```js
assert.strictEqual(fleaCircus(), 330.721154);
```
# --seed--
## --seed-contents--
```js
function fleaCircus() {
return true;
}
fleaCircus();
```
# --solutions--
```js
// solution required
```