Files
obsidian/АиСД/Задачи/LeetCode/Product of Array Except Self.md
roma-dxunvrs f57762fd3b Init
2026-09-03 21:40:46 +03:00

593 B

Leetcode #238 | #Medium | Префикс

Идея

Префиксные и суффиксные произведения

Big-O

  • Время O(N)
  • Память O(1)

Код

class Solution {
    public int[] productExceptSelf(int[] nums) {
        int n = nums.length;
        int[] res = new int[n];
        res[0] = 1;
        for (int i = 1; i < n; i++) res[i] = res[i - 1] * nums[i - 1];
        int right = 1;
        for (int i = n - 1; i >= 0; i--) {
            res[i] *= right;
            right *= nums[i];
        }
        return res;
    }
}