Skip to content

Commit e99bf84

Browse files
committed
lint
1 parent a50afb7 commit e99bf84

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

combination-sum/Donghae0230.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ def backtrack(start, combination):
1919
result = []
2020
backtrack(0, [])
2121
return result
22-

number-of-1-bits/Donghae0230.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ def devide_by_2 (self, n, temp):
1818
def hammingWeight(self, n: int) -> int:
1919
result = []
2020
n, result = self.devide_by_2(n, result)
21-
return result.count(1)
21+
return result.count(1)

0 commit comments

Comments
 (0)