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: 5900f37a1000cf542c50fe8c
title: 'Problem 13: Large sum'
title: 'Problema 13: Grande somma'
challengeType: 5
forumTopicId: 301757
dashedName: problem-13-large-sum
@ -8,7 +8,7 @@ dashedName: problem-13-large-sum
# --description--
Work out the first ten digits of the sum of the following one-hundred 50-digit numbers.
Ottieni le prime 10 cifre della somma dei seguenti cento numeri a 50 cifre.
<div style='padding-left: 4em;'>
37107287533902102798797998220837590246510135740250<br>
@ -115,19 +115,19 @@ Work out the first ten digits of the sum of the following one-hundred 50-digit n
# --hints--
`largeSum(testNums)` should return a number.
`largeSum(testNums)` dovrebbe restituire un numero.
```js
assert(typeof largeSum(testNums) === 'number');
```
`largeSum(testNums)` should return 8348422521.
`largeSum(testNums)` dovrebbe restituire 8348422521.
```js
assert.strictEqual(largeSum(testNums), 8348422521);
```
`largeSum(fiftyDigitNums)` should return 5537376230.
`largeSum(fiftyDigitNums)` dovrebbe restituire 5537376230.
```js
assert.strictEqual(largeSum(fiftyDigitNums), 5537376230);