-
Notifications
You must be signed in to change notification settings - Fork 0
/
day_15.py
32 lines (24 loc) · 990 Bytes
/
day_15.py
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
'''
Problem Statement:
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]
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.)
'''
# Solution:
class Solution:
def productExceptSelf(self, nums: List[int]) -> List[int]:
size = len(nums)
l = [1] * size
r = [1] * size
for i in range(size - 1):
l[i+1] = l[i] * nums[i]
for i in range(size - 1, 0, -1):
r[i - 1] = r[i] * nums[i]
for i in range(size):
l[i] *= r[i]
return l