My LeetCode grinding. Trying to do a problem a day.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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.)