Problem
Ask
Submissions

Problem: Product of Array Except Self

Medium
30 min
Explore how to solve the product of array except self problem where each element in the new array is the product of all other elements except the current one. Learn to implement an efficient O(n) time solution without using division, improving your problem-solving skills for coding interviews.

Statement

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

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

Constraints:

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

Problem: Product of Array Except Self

Medium
30 min
Explore how to solve the product of array except self problem where each element in the new array is the product of all other elements except the current one. Learn to implement an efficient O(n) time solution without using division, improving your problem-solving skills for coding interviews.

Statement

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

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

Constraints:

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