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: 5900f3e41000cf542c50fef6
title: 'Problem 119: Digit power sum'
title: 'Problema 119: Somma delle potenze delle cifre'
challengeType: 5
forumTopicId: 301745
dashedName: problem-119-digit-power-sum
@ -8,17 +8,17 @@ dashedName: problem-119-digit-power-sum
# --description--
The number 512 is interesting because it is equal to the sum of its digits raised to some power: $5 + 1 + 2 = 8$, and $8^3 = 512$. Another example of a number with this property is $614656 = 28^4$.
Il numero 512 è interessante perché è uguale alla somma delle sue cifre elevata ad un certa potenza: $5 + 1 + 2 = 8$, e $8^3 = 512$. Un altro esempio di numero con questa proprietà è $614656 = 28^4$.
We shall define an to be the $n-th$ term of this sequence and insist that a number must contain at least two digits to have a sum.
Definiremo $a_n$ per essere il termine ennesimo $n-th$ di questa sequenza e insisteremo affinché un numero contenga almeno due cifre per avere una somma.
You are given that $a_2 = 512$ and $a_{10} = 614656$.
Ti viene dato $a_2 = 512$ e $a_{10} = 614656$.
Find $a_{30}$.
Trova $a_{30}$.
# --hints--
`digitPowerSum()` should return `248155780267521`.
`digitPowerSum()` dovrebbe restituire `248155780267521`.
```js
assert.strictEqual(digitPowerSum(), 248155780267521);