Skip to content

Commit a8c940a

Browse files
committed
line lint
1 parent 1049375 commit a8c940a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

climbing-stairs/Donghae0230.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ def climbStairs(self, n: int) -> int:
1818
while i < n:
1919
result.append(result[i-1] + result[i-2])
2020
i += 1
21-
return result[-1]
21+
return result[-1]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def productExceptSelf(self, nums: List[int]) -> List[int]:
4040
# continue
4141
# tmp *= nums[j]
4242
# result.append(tmp)
43-
# return result
43+
# return result

0 commit comments

Comments
 (0)