Product of All Array Elements Except Self
Calculate the product of all the elements of an array except the current element.
Statement
Given an integer array, nums
, return an array, answer
, such that answer[i]
is equal to the product of all the elements of nums
except nums[i]
.
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.