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

This commit is contained in:
camperbot
2022-02-28 13:29:21 +05:30
committed by GitHub
parent 5e5015e47d
commit fbc7a26529
127 changed files with 1288 additions and 1079 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f41e1000cf542c50ff31
title: 'Problem 178: Step Numbers'
title: 'Problema 178: passo dei numeri'
challengeType: 5
forumTopicId: 301813
dashedName: problem-178-step-numbers
@ -8,22 +8,22 @@ dashedName: problem-178-step-numbers
# --description--
Consider the number 45656.
Considera il numero 45656.
It can be seen that each pair of consecutive digits of 45656 has a difference of one.
Si può vedere che ogni coppia di cifre consecutive di 45656 ha una differenza di uno.
A number for which every pair of consecutive digits has a difference of one is called a step number.
Un numero per cui ogni coppia di cifre consecutive ha una differenza di uno è chiamato numero di passo.
A pandigital number contains every decimal digit from 0 to 9 at least once.
Un numero pandigitale contiene ogni cifra decimale da 0 a 9 almeno una volta.
How many pandigital step numbers less than 1040 are there?
Quanti numeri di passaggio pandigitali inferiori a ${10}^{40}$ ci sono?
# --hints--
`euler178()` should return 126461847755.
`stepNumbers()` dovrebbe restituire `126461847755`.
```js
assert.strictEqual(euler178(), 126461847755);
assert.strictEqual(stepNumbers(), 126461847755);
```
# --seed--
@ -31,12 +31,12 @@ assert.strictEqual(euler178(), 126461847755);
## --seed-contents--
```js
function euler178() {
function stepNumbers() {
return true;
}
euler178();
stepNumbers();
```
# --solutions--