Skip to content

Commit 28479eb

Browse files
committed
줄바꿈 추가
1 parent 4221b6d commit 28479eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

product-of-array-except-self/changhyumm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ def productExceptSelf(self, nums: List[int]) -> List[int]:
1919
answer = []
2020
for k in range(len(left)):
2121
answer.append(left[k]*right[k])
22-
return answer
22+
return answer
23+

0 commit comments

Comments
 (0)