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

This commit is contained in:
camperbot
2022-03-01 00:52:39 +05:30
committed by GitHub
parent b8667061a1
commit 18e5be9efa
91 changed files with 1112 additions and 888 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f4661000cf542c50ff78
title: 'Problem 250: 250250'
title: 'Problema 250: 250250'
challengeType: 5
forumTopicId: 301898
dashedName: problem-250-250250
@ -8,14 +8,14 @@ dashedName: problem-250-250250
# --description--
Find the number of non-empty subsets of {11, 22, 33,..., 250250250250}, the sum of whose elements is divisible by 250. Enter the rightmost 16 digits as your answer.
Trova il numero di sottoinsiemi non vuoti di $\\{{1}^{1}, {2}^{2}, {3}^{3}, \ldots, {250250}^{250250}\\}$, la somma dei cui elementi è divisibile per 250. Inserisci le 16 cifre più a destra come risposta.
# --hints--
`euler250()` should return 1425480602091519.
`twoHundredFifty()` dovrebbe restituire `1425480602091519`.
```js
assert.strictEqual(euler250(), 1425480602091519);
assert.strictEqual(twoHundredFifty(), 1425480602091519);
```
# --seed--
@ -23,12 +23,12 @@ assert.strictEqual(euler250(), 1425480602091519);
## --seed-contents--
```js
function euler250() {
function twoHundredFifty() {
return true;
}
euler250();
twoHundredFifty();
```
# --solutions--