Skip to content

Commit b174def

Browse files
authored
Update maximum-hamming-distances.py
1 parent b78a464 commit b174def

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/maximum-hamming-distances.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def maxHammingDistances(self, nums, m):
3030
:type m: int
3131
:rtype: List[int]
3232
"""
33-
result = [0]*len(nums)
3433
q = []
3534
dist = [-1]*(1<<m)
3635
for x in nums:

0 commit comments

Comments
 (0)