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

@ -8,7 +8,7 @@ dashedName: sedols
# --description--
For each number list of 6-digit [SEDOL](https://en.wikipedia.org/wiki/SEDOL "wp: SEDOL")s, calculate and append the checksum digit. That is, given the input string on the left, your function should return the corresponding string on the right:
Per ogni elenco di numeri di 6 cifre [SEDOL](https://en.wikipedia.org/wiki/SEDOL "wp: SEDOL"), calcolare e aggiungere la cifra di checksum. Cioè, data la stringa di input a sinistra, la funzione dovrebbe restituire la stringa corrispondente a destra:
<pre>
710889 => 7108899
@ -24,35 +24,35 @@ B0YBKT => B0YBKT7
B00030 => B000300
</pre>
Check that each input is correctly formed, especially with respect to valid characters allowed in a SEDOL string. Your function should return `null` on an invalid input.
Controllare che ogni input sia formato correttamente, soprattutto per quanto riguarda i caratteri validi consentiti in una stringa SEDOL. La tua funzione dovrebbe restituire `null` per un input non valido.
# --hints--
`sedol` should be a function.
`sedol` dovrebbe essere una funzione.
```js
assert(typeof sedol === 'function');
```
`sedol('a')` should return null.
`sedol('a')` dovrebbe restituire null.
```js
assert(sedol('a') === null);
```
`sedol('710889')` should return '7108899'.
`sedol('710889')` dovrebbe restituire '7108899'.
```js
assert(sedol('710889') === '7108899');
```
`sedol('BOATER')` should return null.
`sedol('BOATER')` dovrebbe restituire null.
```js
assert(sedol('BOATER') === null);
```
`sedol('228276')` should return '2282765'.
`sedol('228276')` dovrebbe restituire '2282765'.
```js
assert(sedol('228276') === '2282765');