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: 594ecc0d9a8cf816e3340187
title: Taxicab numbers
title: Numeri dei taxi
challengeType: 5
forumTopicId: 302337
dashedName: taxicab-numbers
@ -8,67 +8,67 @@ dashedName: taxicab-numbers
# --description--
A [taxicab number](https://en.wikipedia.org/wiki/HardyRamanujan number "wp: HardyRamanujan number") (the definition that is being used here) is a positive integer that can be expressed as the sum of two positive cubes in more than one way.
Un [numero taxicab](https://en.wikipedia.org/wiki/HardyRamanujan number "wp: HardyRamanujan number") (la definizione che viene utilizzata qui) è un intero positivo che può essere espresso come la somma di due cubi positivi in più di un modo.
The first taxicab number is `1729`, which is:
Il primo numero di taxi è `1729`, che è:
1<sup>3</sup> + 12<sup>3</sup> and
1<sup>3</sup> + 12<sup>3</sup> e
9<sup>3</sup> + 10<sup>3</sup>.
Taxicab numbers are also known as:
I numeri dei taxi sono anche conosciuti come:
<ul>
<li>taxi numbers</li>
<li>taxi-cab numbers</li>
<li>taxi cab numbers</li>
<li>Hardy-Ramanujan numbers</li>
<li>Numeri di Hardy-Ramanujan</li>
</ul>
# --instructions--
Write a function that returns the lowest `n` taxicab numbers. For each of the taxicab numbers, show the number as well as its constituent cubes.
Scrivi una funzione che restituisce i numeri di taxi più bassi `n`. Per ciascuno dei numeri taxicab indica il numero e i suoi cubi costituenti.
**See also:**
**Vedi anche:**
<ul>
<li><a href='https://oeis.org/A001235' target='_blank'>A001235 taxicab numbers</a> on The On-Line Encyclopedia of Integer Sequences.</li>
<li><a href='https://en.wikipedia.org/wiki/Taxicab_number' target='_blank'>taxicab number</a> on Wikipedia.</li>
<li><a href='https://oeis.org/A001235' target='_blank'>A001235 numeri taxicab</a> su Enciclopedia On-Line di sequenze di numeri interi.</li>
<li><a href='https://en.wikipedia.org/wiki/Taxicab_number' target='_blank'>numero di taxi</a> su Wikipedia.</li>
</ul>
# --hints--
`taxicabNumbers` should be a function.
`taxicabNumbers` dovrebbe essere una funzione.
```js
assert(typeof taxicabNumbers === 'function');
```
`taxicabNumbers` should return an array.
`taxicabNumbers` dovrebbe restituire un array.
```js
assert(typeof taxicabNumbers(2) === 'object');
```
`taxicabNumbers` should return an array of numbers.
`taxicabNumbers` dovrebbe restituire un array di numeri.
```js
assert(typeof taxicabNumbers(100)[0] === 'number');
```
`taxicabNumbers(4)` should return [1729, 4104, 13832, 20683].
`taxicabNumbers(4)` dovrebbe restituire [1729, 4104, 13832, 20683].
```js
assert.deepEqual(taxicabNumbers(4), res4);
```
`taxicabNumbers(25)` should return [1729, 4104, 13832, 20683, 32832, 39312, 40033, 46683, 64232, 65728, 110656, 110808, 134379, 149389, 165464, 171288, 195841, 216027, 216125, 262656, 314496, 320264, 327763, 373464, 402597]
`taxicabNumbers(25)` dovrebbe restituire [1729, 4104, 13832, 20683, 32832, 39312, 40033, 46683, 64232, 65728, 110656, 110808, 134379, 149389, 165464, 171288, 195841, 216027, 216125, 262656, 314496, 320264, 327763, 373464, 402597]
```js
assert.deepEqual(taxicabNumbers(25), res25);
```
`taxicabNumbers(39)` resulting numbers from 20 - 29 should be [314496,320264,327763,373464,402597,439101,443889,513000,513856].
I numeri risultanti di `taxicabNumbers(39)` da 20 a 29 dovrebbero essere [314496,320264,327763,373464,402597,439101,443889,513000,513856].
```js
assert.deepEqual(taxicabNumbers(39).slice(20, 29), res39From20To29);