Skip to content

Commit 8e3b29e

Browse files
committed
fix: modify code for linelint check
1 parent cd066f6 commit 8e3b29e

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

combination-sum/shinsj4653.py

+2
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,5 @@ def dfs(start, total):
158158
dfs(0, 0)
159159
return output
160160
combinationSum([2, 3, 5, 7], 7)
161+
162+

decode-ways/shinsj4653.py

+2
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,5 @@ def numDecodings(s):
123123
return dp[0]
124124

125125
numDecodings("2266")
126+
127+

maximum-subarray/shinsj4653.py

+2
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ def maxSubArray(self, nums: List[int]) -> int:
4444
nums[i] += nums[i - 1]
4545

4646
return max(nums)
47+
48+

0 commit comments

Comments
 (0)