chore(i18n,learn): processed translations (#45271)
This commit is contained in:
@ -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--
|
||||
|
Reference in New Issue
Block a user