題庫
00:00

22. Product of Array Except Self

中等陣列AmazonGoogle

Return an array where answer[i] is the product of every value in nums except nums[i].

Solve it in O(n) time without using division.

範例 1:

輸入: nums = [1,2,3,4]
輸出: [24,12,8,6]

範例 2:

輸入: nums = [-1,1,0,-3,3]
輸出: [0,0,9,0,0]

限制條件:

  • 1 <= nums.length <= 10^5
核心程式碼模式
● 已自動儲存第 1 行,第 1 欄