Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/rosetta-code/vector-cross-product.md

66 lines
1.2 KiB
Markdown
Raw Normal View History

---
title: Vector cross product
id: 594810f028c0303b75339ad2
challengeType: 5
videoUrl: ''
localeTitle: 矢量交叉产品
---
## Description
<section id="description">矢量被定义为具有三个维度由三个数字的有序集合表示XYZ<p>任务: </p><pre> <code>Write a function that takes two vectors (arrays) as input and computes their cross product.</code> </pre><p>您的函数应在无效输入(即不同长度的向量)上返回<code>null</code></p><p></p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: dotProduct必须是一个函数
testString: assert.equal(typeof crossProduct, 'function');
- text: dotProduct必须返回null
testString: assert.equal(crossProduct(), null);
- text: 'crossProduct[1,2,3][4,5,6])必须返回[-3,6-3]。'
testString: assert.deepEqual(res12, exp12);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function crossProduct() {
// Good luck!
}
```
</div>
### After Test
<div id='js-teardown'>
```js
console.info('after the test');
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>