We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4221b6d commit 28479ebCopy full SHA for 28479eb
product-of-array-except-self/changhyumm.py
@@ -19,4 +19,5 @@ def productExceptSelf(self, nums: List[int]) -> List[int]:
19
answer = []
20
for k in range(len(left)):
21
answer.append(left[k]*right[k])
22
- return answer
+ return answer
23
+
0 commit comments