Coding
Product of Array Except Self
Calculate the product of an array except for self without using division.
Input: nums = [-1,1,0,-3,3]
Output: [0,0,9,0,0]
Explanation: The single zero zeros out all products except at its own index, which cleanly multiplies the remaining elements.
Was asked at