C Coding Practice

Solve Product Array Puzzle using C Language

Solve Product Array Puzzle using C to enhance your skills with c coding practice , master coding concepts, and prepare for interviews with practical exercises and detailed solutions.

Product Array Puzzle

Difficulty : Easy

Categories :

  • Arrays
  • Mathematics

Given an array arr[], construct a Product Array pro[] where each element pro[i] is equal to the product of all the elements of arr[] except arr[i].

Constraints:

  • 1 ≤ arr.length ≤ 103
  • 0 ≤ arr[i] ≤ 102
  • The array may contain duplicates

Examples:

Input: arr = [10,3,5,6,2]
Output: [180,600,360,300,900]
Explanation:
pro[0] = 3*5*6*2 = 180
pro[1] = 10*5*6*2 = 600
pro[2] = 10*3*6*2 = 360
pro[3] = 10*3*5*2 = 300
pro[4] = 10*3*5*6 = 900
Input: arr = [12,0]
Output: [0,12]

Follow-up:

Can you solve it without using the division operation and in O(n) time complexity?

Problem Solving

Input

What You'll Find Here

Practical Challenges Solve coding problems that strengthen your understanding of C.

Step-by-Step Tutorials Learn how to write efficient and optimized code.

Career-Focused Skills Prepare for technical interviews with targeted exercises.

Choose from the following categories