Solution: Product of Array Except Self

Let’s solve the Product of Array Except Self problem.

Statement

You’re given an integer array, nums. Return a resultant array product so that product[i] is equal to the product of all the elements of nums except nums[i].

Write an algorithm that runs in O(n)O(n) time without using the division operation.

Constraints:

  • 22 \leq nums.length 103\leq 10^3
  • 30-30 \leq nums[i] 30\leq 30
  • The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.

Solution 1: Brute force

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.