fix(curriculum): remove duplicated test (#42247)

pull/42254/head
Luca 2021-05-25 21:15:11 +02:00 committed by GitHub
parent edf9989e59
commit 09b62480f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 10 deletions

View File

@ -60,16 +60,6 @@ assert.deepEqual(sumTo100(243), [
]);
```
`sumTo100(199)` should return `["-1+2-3+45+67+89", "123-4+5+6+78-9", "123-4+56+7+8+9"]`.
```js
assert.deepEqual(sumTo100(199), [
'-1+2-3+45+67+89',
'123-4+5+6+78-9',
'123-4+56+7+8+9'
]);
```
`sumTo100(197)` should return `["1-2-3+45+67+89", "12+34-5+67+89", "123+4-5+6+78-9"]`.
```js