Skip to content

Commit ecc7b71

Browse files
committed
Add new line
1 parent 2b300f1 commit ecc7b71

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +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+

valid-palindrome/mandel-17.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +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+

0 commit comments

Comments
 (0)