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 45b8cf2 commit dfca88dCopy full SHA for dfca88d
1 file changed
product-of-array-except-self/yerim01.py
@@ -27,4 +27,4 @@ def productExceptSelf(self, nums: List[int]) -> List[int]:
27
for i in range(len(nums)):
28
result[i] = prefix[i] * suffix[i]
29
30
- return result
+ return result
0 commit comments