Skip to content

Commit fea2311

Browse files
committed
python lint
1 parent 43f5f8f commit fea2311

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

combination-sum/Donghae0230.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ def backtrack(start, combination):
1414
result = []
1515
backtrack(0, [])
1616
return result
17+

number-of-1-bits/Donghae0230.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ def hammingWeight(self, n: int) -> int:
1616
result = []
1717
n, result = self.devide_by_2(n, result)
1818
return result.count(1)
19-

0 commit comments

Comments
 (0)