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

This commit is contained in:
camperbot
2022-02-19 12:56:08 +05:30
committed by GitHub
parent 8138a07d52
commit ba14990876
134 changed files with 1540 additions and 1511 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f3891000cf542c50fe9c
title: 'Problem 29: Distinct powers'
title: 'Problema 29: Potenze distinte'
challengeType: 5
forumTopicId: 301941
dashedName: problem-29-distinct-powers
@ -8,7 +8,7 @@ dashedName: problem-29-distinct-powers
# --description--
Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5:
Considera tutte le combinazioni intere di $a^b$ per 2 ≤ a ≤ 5 e 2 ≤ b ≤ 5:
<div style='padding-left: 4em;'>
2<sup>2</sup>=4, 2<sup>3</sup>=8, 2<sup>4</sup>=16, 2<sup>5</sup>=32 <br>
@ -17,41 +17,41 @@ Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5:
5<sup>2</sup>=25, 5<sup>3</sup>=125, 5<sup>4</sup>=625, 5<sup>5</sup>=3125 <br>
</div>
If they are then placed in numerical order, with any repeats removed, we get the following sequence of 15 distinct terms:
Se sono successivamente posizionati in ordine numerico, con eventuali ripetizioni rimosse, otteniamo la seguente sequenza di 15 termini distinti:
<div style='padding-left: 4em;'>
4, 8, 9, 16, 25, 27, 32, 64, 81, 125, 243, 256, 625, 1024, 3125
</div>
How many distinct terms are in the sequence generated by `ab` for 2 ≤ `a``n` and 2 ≤ `b``n`?
Quanti termini distinti ci sono nella sequenza generata da $a^b$ per 2 ≤ `a``n` e 2 ≤ `b``n`?
# --hints--
`distinctPowers(15)` should return a number.
`distinctPowers(15)` dovrebbe restituire un numero.
```js
assert(typeof distinctPowers(15) === 'number');
```
`distinctPowers(15)` should return 177.
`distinctPowers(15)` dovrebbe restituire 177.
```js
assert.strictEqual(distinctPowers(15), 177);
```
`distinctPowers(20)` should return 324.
`distinctPowers(20)` dovrebbe restituire 324.
```js
assert.strictEqual(distinctPowers(20), 324);
```
`distinctPowers(25)` should return 519.
`distinctPowers(25)` dovrebbe restituire 519.
```js
assert.strictEqual(distinctPowers(25), 519);
```
`distinctPowers(30)` should return 755.
`distinctPowers(30)` dovrebbe restituire 755.
```js
assert.strictEqual(distinctPowers(30), 755);