Files
obsidian/АиСД/Задачи/LeetCode/Product of Array Except Self.md
T
roma-dxunvrs c90a404c40
deploy / Pull and Restart (push) Successful in 18s
Refactor
2026-09-19 19:20:43 +03:00

589 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;
    }
}