mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-12 10:00:39 -04:00
1.8 KiB
1.8 KiB
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 594810f028c0303b75339ad3 | 矢量点积 | 1 | 302343 | vector-dot-product |
--description--
A vector can have one or more values represented by an ordered collection. Examples could be (x), (x, y), or (x, y, z).
--instructions--
编写一个函数,将两个向量(表示为一维数组)作为输入并计算它们的点积。 您的函数应该在无效输入上返回 null,例如不同长度的向量或传递两个向量以外的任何内容。
--hints--
dotProduct 应该是一个函数。
assert.equal(typeof dotProduct, 'function');
dotProduct() 应该返回 null。
assert.equal(dotProduct(), null);
dotProduct([1], [1]) 应该返回 1。
assert.equal(dotProduct([1], [1]), 1);
dotProduct([1], [1, 2]) 应该返回 null。
assert.equal(dotProduct([1], [1, 2]), null);
dotProduct([1, 3, -5], [4, -2, -1]) 应该返回 3。
assert.equal(dotProduct([1, 3, -5], [4, -2, -1]), 3);
dotProduct([3, 2, 1], [2, 4, 2], [5, 3, 1]) 应该返回 null。
assert.equal(dotProduct([3, 2, 1], [2, 4, 2], [5, 3, 1]), null);
dotProduct([ 0, 3, 6, 9, 12 ], [ 0, 4, 8, 12, 16 ]) 应该返回 360。
assert.equal(dotProduct([ 0, 3, 6, 9, 12 ], [ 0, 4, 8, 12, 16 ]), 360);
--seed--
--seed-contents--
function dotProduct(...vectors) {
}
--solutions--
function dotProduct(...vectors) {
if (!vectors || !vectors.length || vectors.length > 2 || vectors[0].length !== vectors[1].length) {
return null;
}
const vectorLen = vectors[0].length;
let prod = 0;
let sum = 0;
let j = vectorLen;
let i = 2;
// Sum terms
while (j--) {
i = 2;
prod = 1;
while (i--) {
prod *= vectors[i][j];
}
sum += prod;
}
return sum;
}