My LeetCode grinding. Trying to do a problem a day.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

problem.txt 572B

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