We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5501460 commit ba83b3aCopy full SHA for ba83b3a
problems/238.product-of-array-except-self.md
@@ -22,7 +22,7 @@ Could you solve it with constant space complexity? (The output array does not co
22
## 思路
23
24
这道题的意思是给定一个数组,返回一个新的数组,这个数组每一项都是其他项的乘积。
25
-符合直觉的思路是两层循环,时间复杂度是O(n),但是题目要求`Please solve it without division and in O(n)`。
+符合直觉的思路是两层循环,时间复杂度是O(n^2),但是题目要求`Please solve it without division and in O(n)`。
26
27
因此我们需要换一种思路,由于输出的每一项都需要用到别的元素,因此一次遍历是绝对不行的。
28
考虑我们先进行一次遍历, 然后维护一个数组,第i项代表前i个元素(不包括i)的乘积。
0 commit comments