22. Product of Array Except Self
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