-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct_of_array_except_self.js
More file actions
35 lines (27 loc) · 1.03 KB
/
product_of_array_except_self.js
File metadata and controls
35 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Given an array nums of n integers where n > 1, return an array output such that
// output[i] is equal to the product of all the elements of nums except nums[i].
// Example:
// Input: [1, 2, 3, 4] [4, 3, 2, 1]
// Output: [24, 12, 8, 6]
// Constraint: It's guaranteed that the product of the elements of any prefix or
// suffix of the array (including the whole array) fits in a 32 bit integer.
// Note: Please solve it without division and in O(n).
// Follow up:
// Could you solve it with constant space complexity ? (The output array does not
// count as extra space for the purpose of space complexity analysis.)
const productExceptSelf = (arr) => {
let result = new Array(arr.length),
runningProduct = 1;
for (let i = 0; i < arr.length; i++) {
let num = arr[i];
result[i] = runningProduct;
runningProduct *= num;
}
runningProduct = 1;
for (let i = arr.length - 1; i >= 0; i--) {
let num = arr[i];
result[i] *= runningProduct;
runningProduct *= num;
}
return result;
};