Skip to content

Commit b28a667

Browse files
committed
Add new line
1 parent ecc7b71 commit b28a667

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

combination-sum/mandel-17.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ def dfs(csum, index, path):
1616

1717
dfs(target, 0, [])
1818
return result
19-
19+

number-of-1-bits/mandel-17.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ def hammingWeight(self, n: int) -> int:
88
n = n // 2
99
cnt_dict = collections.Counter(two_digit)
1010
return cnt_dict[1]
11-
11+

valid-palindrome/mandel-17.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class Solution:
22
def isPalindrome(self, s: str) -> bool:
33
ch = [c.lower() for c in s if c.isalnum()]
44
return ch == ch[::-1]
5-
5+

0 commit comments

Comments
 (0)