Return an array where output index i equals the product of every value in nums except nums[i]. Do not use division.
Input / output
nums: integer[]integer[] of equal lengthExamples
[1,2,3,4] returns [24,12,8,6].[-1,1,0,-3,3] returns [0,0,9,0,0].Constraints
2 <= nums.length <= 100,000Follow-up Can you store suffix accumulation in one variable so output space is the only allocated array?