Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/rosetta-code/vector-cross-product.chinese.md
2020-08-16 04:45:18 +05:30

1.2 KiB
Raw Blame History

title, id, challengeType, videoUrl, localeTitle
title id challengeType videoUrl localeTitle
Vector cross product 594810f028c0303b75339ad2 5 矢量交叉产品

Description

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

任务:

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

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

Instructions

Tests

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);

Challenge Seed

function crossProduct() {
    // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required