My LeetCode grinding. Trying to do a problem a day.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

12345678910111213
  1. Given an array nums of n integers where n > 1, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i].
  2. Example:
  3. Input: [1,2,3,4]
  4. Output: [24,12,8,6]
  5. Constraint: It's guaranteed that the product of the elements of any prefix or suffix of the array (including the whole array) fits in a 32 bit integer.
  6. Note: Please solve it without division and in O(n).
  7. Follow up:
  8. Could you solve it with constant space complexity? (The output array does not count as extra space for the purpose of space complexity analysis.)