Skip to content

Commit 66e51b0

Browse files
committed
style: lint
1 parent 282670f commit 66e51b0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

combination-sum/chordpli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ def __backtrack__(self, candidates: List[int], current_idx: int, target: int, re
2626
current_arr.append(candidates[current_idx])
2727
self.__backtrack__(candidates, current_idx, target, result, current_arr)
2828
current_arr.pop()
29-
self.__backtrack__(candidates, current_idx + 1, target, result, current_arr)
29+
self.__backtrack__(candidates, current_idx + 1, target, result, current_arr)

number-of-1-bits/chordpli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class Solution:
22
def hammingWeight(self, n: int) -> int:
3-
return bin(n).count('1')
3+
return bin(n).count('1')

valid-palindrome/chordpli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def isPalindrome(self, s: str) -> bool:
1010
if lower_eng_str == reverse_str:
1111
return True
1212

13-
return False
13+
return False

0 commit comments

Comments
 (0)