Skip to content

Commit b4d2e82

Browse files
Fix : Lint Error
1 parent edabe77 commit b4d2e82

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

climbing-stairs/printjin-gmailcom.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ def climbStairs(self, n: int):
55
a, b = 1, 2
66
for _ in range(3, n+1):
77
a, b = b, a + b
8-
return b
8+
return b
9+

product-of-array-except-self/printjin-gmailcom.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ def productExceptSelf(self, nums):
1010
for i in range(n-1, -1, -1):
1111
answer[i] *= right
1212
right *= nums[i]
13-
return answer
13+
return answer
14+

0 commit comments

Comments
 (0)