chore: manual translations (#42811)

This commit is contained in:
Nicholas Carrigan (he/him)
2021-07-09 21:23:54 -07:00
committed by GitHub
parent a3395269a0
commit c4fd49e5b7
806 changed files with 8935 additions and 4378 deletions

View File

@ -16,19 +16,19 @@ Write a function that takes two vectors (arrays) as input and computes their cro
# --hints--
dotProduct should be a function.
`crossProduct` should be a function.
```js
assert.equal(typeof crossProduct, 'function');
```
dotProduct() should return null.
`crossProduct()` should return null.
```js
assert.equal(crossProduct(), null);
```
crossProduct([1, 2, 3], [4, 5, 6]) should return [-3, 6, -3].
`crossProduct([1, 2, 3], [4, 5, 6])` should return `[-3, 6, -3]`.
```js
assert.deepEqual(res12, exp12);