Skip to content

Commit 5a882d0

Browse files
committed
提交238 除自身之外数组的乘积
1 parent 0c5c780 commit 5a882d0

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<script>
10+
// Source : https://leetcode.com/problems/product-of-array-except-self/
11+
// Author : 悬笔e绝
12+
// Date : 2020-02-10
13+
14+
/**
15+
* @param {number[]} nums
16+
* @return {number[]}
17+
*/
18+
19+
function fn(array, idx) {
20+
var ans = 1;
21+
array.forEach(function(item, index, array) {
22+
if (idx !== index)
23+
ans *= item;
24+
});
25+
return ans;
26+
}
27+
28+
var productExceptSelf = function(nums) {
29+
var tmp = nums.reduce(function(pre, cur, index, array) {
30+
return pre * cur;
31+
});
32+
var ans = nums.map(function(item, index, array) {
33+
if (item === 0)
34+
return fn(array, index);
35+
return tmp / item;
36+
});
37+
return ans;
38+
};
39+
</script>
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)