714 B
Raw Blame History

id, title, challengeType, videoUrl
id title challengeType videoUrl
594810f028c0303b75339ad2 矢量交叉产品 5

--description--

矢量被定义为具有三个维度由三个数字的有序集合表示XYZ

任务:

 Write a function that takes two vectors (arrays) as input and computes their cross product. 

您的函数应在无效输入(即不同长度的向量)上返回null

--hints--

dotProduct必须是一个函数

assert.equal(typeof crossProduct, 'function');

dotProduct必须返回null

assert.equal(crossProduct(), null);

crossProduct[1,2,3][4,5,6])必须返回[-3,6-3]。

assert.deepEqual(res12, exp12);

--solutions--