LeetCode 238. 除自身以外数组的乘积

mac2024-05-22  38

Description

给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。

示例: 输入: [1,2,3,4] 输出: [24,12,8,6] 说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。

Solution

同剑指offer 乘积 = 当前数左边的乘积 * 当前数右边的乘积

class Solution: def productExceptSelf(self, nums: List[int]) -> List[int]: left = [] right = [] tmp = 1 for i in range(len(nums)): left.append(tmp) tmp *= nums[i] tmp = 1 for i in range(len(nums)-1, -1, -1): right.append(tmp) tmp *= nums[i] right = right[::-1] ans = [] for i in range(len(nums)): ans.append(left[i]*right[i]) return ans
最新回复(0)