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

This commit is contained in:
camperbot
2022-02-05 17:45:23 +05:30
committed by GitHub
parent f09c167a03
commit 2d740dd6cc
5 changed files with 61 additions and 45 deletions

View File

@@ -45,13 +45,13 @@ assert.deepEqual(uniteUnique([1, 2, 3], [5, 2, 1, 4], [2, 1], [6, 7, 8]), [
]);
```
`uniteUnique([1, 3, 2], [5, 4], [5, 6])` should return `[1, 3, 2, 5, 4, 6]`.
`uniteUnique([1, 3, 2], [5, 4], [5, 6])` `[1, 3, 2, 5, 4, 6]` を返す必要があります。
```js
assert.deepEqual(uniteUnique([1, 3, 2], [5, 4], [5, 6]), [1, 3, 2, 5, 4, 6]);
```
`uniteUnique([1, 3, 2, 3], [5, 2, 1, 4], [2, 1])` should return `[1, 3, 2, 5, 4]`.
`uniteUnique([1, 3, 2, 3], [5, 2, 1, 4], [2, 1])` `[1, 3, 2, 5, 4]` を返す必要があります。
```js
assert.deepEqual(uniteUnique([1, 3, 2, 3], [5, 2, 1, 4], [2, 1]), [1, 3, 2, 5, 4]);