chore(i18n,learn): processed translations (#45333)

This commit is contained in:
camperbot
2022-03-04 19:46:29 +05:30
committed by GitHub
parent e24c8abc7f
commit 3d3972f2dd
113 changed files with 1394 additions and 1111 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f4f61000cf542c510008
title: 'Problem 393: Migrating ants'
title: 'Problema 393: Migrazione di formiche'
challengeType: 5
forumTopicId: 302058
dashedName: problem-393-migrating-ants
@ -8,20 +8,22 @@ dashedName: problem-393-migrating-ants
# --description--
An n×n grid of squares contains n2 ants, one ant per square.
Una griglia $n × n$ di quadrati contiene $n^2$ formiche, una formica per quadrato.
All ants decide to move simultaneously to an adjacent square (usually 4 possibilities, except for ants on the edge of the grid or at the corners).
Tutte le formiche decidono di muoversi simultaneamente in un quadrato adiacente (di solito 4 possibilità, ad eccezione delle formiche sul bordo della griglia o agli angoli).
We define f(n) to be the number of ways this can happen without any ants ending on the same square and without any two ants crossing the same edge between two squares.
Definiamo $f(n)$ come il numero di modi in cui questo può accadere senza che nessuna formica finisca sullo stesso quadrato e senza che due formiche attraversino lo stesso bordo tra due quadrati.
You are given that f(4) = 88. Find f(10).
Ti viene dato che $f(4) = 88$.
Trova $f(10)$.
# --hints--
`euler393()` should return 112398351350823100.
`migratingAnts()` dovrebbe restituire `112398351350823100`.
```js
assert.strictEqual(euler393(), 112398351350823100);
assert.strictEqual(migratingAnts(), 112398351350823100);
```
# --seed--
@ -29,12 +31,12 @@ assert.strictEqual(euler393(), 112398351350823100);
## --seed-contents--
```js
function euler393() {
function migratingAnts() {
return true;
}
euler393();
migratingAnts();
```
# --solutions--