238. Product of Array Except Self | LeetCode | Top Interview 150 | Coding Questions
Published: (December 17, 2025 at 04:36 PM EST)
1 min read
Source: Dev.to
Source: Dev.to
Problem Link
https://leetcode.com/problems/product-of-array-except-self/
Solution
class Solution {
public int[] productExceptSelf(int[] nums) {
int n = nums.length;
int[] left = new int[n];
int[] right = new int[n];
left[0] = 1;
for (int i = 1; i = 0; i--) {
right[i] = right[i + 1] * nums[i + 1];
}
int[] ans = new int[n];
for (int i = 0; i < n; i++) {
ans[i] = left[i] * right[i];
}
return ans;
}
} 