2019-01-30 13:41:15 +05:30
|
|
|
---
|
|
|
|
id: 5a23c84252665b21eecc7e1e
|
|
|
|
title: Dot product
|
|
|
|
challengeType: 5
|
2019-08-05 09:17:33 -07:00
|
|
|
forumTopicId: 302251
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: dot-product
|
2019-01-30 13:41:15 +05:30
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
2020-03-30 11:23:18 -05:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Create a function, to compute the **[dot product](<https://en.wikipedia.org/wiki/Dot product>)**, also known as the **scalar product** of two vectors.
|
2019-07-18 17:32:12 +02:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2020-03-30 11:23:18 -05:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`dotProduct` should be a function.
|
2019-01-30 13:41:15 +05:30
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(typeof dotProduct == 'function');
|
|
|
|
```
|
2020-03-30 11:23:18 -05:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`dotProduct([1, 3, -5], [4, -2, -1])` should return a number.
|
2019-01-30 13:41:15 +05:30
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(typeof dotProduct([1, 3, -5], [4, -2, -1]) == 'number');
|
|
|
|
```
|
2019-01-30 13:41:15 +05:30
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`dotProduct([1, 3, -5], [4, -2, -1])` should return `3`.
|
2020-03-30 11:23:18 -05:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert.equal(dotProduct([1, 3, -5], [4, -2, -1]), 3);
|
|
|
|
```
|
2019-01-30 13:41:15 +05:30
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`dotProduct([1, 2, 3, 4, 5], [6, 7, 8, 9, 10])` should return `130`.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert.equal(dotProduct([1, 2, 3, 4, 5], [6, 7, 8, 9, 10]), 130);
|
2019-01-30 13:41:15 +05:30
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`dotProduct([5, 4, 3, 2], [7, 8, 9, 6])` should return `106`.
|
2019-01-30 13:41:15 +05:30
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert.equal(dotProduct([5, 4, 3, 2], [7, 8, 9, 6]), 106);
|
|
|
|
```
|
2020-03-30 11:23:18 -05:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`dotProduct([-5, 4, -3, 2], [-7, -8, 9, -6])` should return `-36`.
|
2019-07-18 17:32:12 +02:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert.equal(dotProduct([-5, 4, -3, 2], [-7, -8, 9, -6]), -36);
|
|
|
|
```
|
|
|
|
|
|
|
|
`dotProduct([17, 27, 34, 43, 15], [62, 73, 48, 95, 110])` should return `10392`.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert.equal(dotProduct([17, 27, 34, 43, 15], [62, 73, 48, 95, 110]), 10392);
|
|
|
|
```
|
|
|
|
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
2019-01-30 13:41:15 +05:30
|
|
|
|
|
|
|
```js
|
2019-03-02 17:42:56 +09:00
|
|
|
function dotProduct(ary1, ary2) {
|
2020-09-15 09:57:40 -07:00
|
|
|
|
2019-01-30 13:41:15 +05:30
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2019-01-30 13:41:15 +05:30
|
|
|
|
|
|
|
```js
|
2019-03-02 17:42:56 +09:00
|
|
|
function dotProduct(ary1, ary2) {
|
2020-03-30 11:23:18 -05:00
|
|
|
var dotprod = 0;
|
|
|
|
for (var i = 0; i < ary1.length; i++) dotprod += ary1[i] * ary2[i];
|
|
|
|
return dotprod;
|
2019-01-30 13:41:15 +05:30
|
|
|
}
|
|
|
|
```
|