Skip to content

Commit 9475b05

Browse files
committed
🚨 added new line
1 parent a234b58 commit 9475b05

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

house-robber/yayyz.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ def rob(self, nums: List[int]) -> int:
1414
dp[i] = max(dp[i-1], dp[i-2] + nums[i])
1515

1616
return dp[-1]
17-

longest-consecutive-sequence/yayyz.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,3 @@ def longestConsecutive(self, nums: List[int]) -> int:
1919
lastNum = nums[i]
2020

2121
return result
22-
23-

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,3 @@ def productExceptSelf(self, nums: List[int]) -> List[int]:
1414
postfix *= nums[i]
1515

1616
return output
17-
18-
19-

0 commit comments

Comments
 (0)