Skip to content

Commit bf1a2bd

Browse files
authored
Update find-a-value-of-a-mysterious-function-closest-to-target.py
1 parent d2ca7bb commit bf1a2bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/find-a-value-of-a-mysterious-function-closest-to-target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
class BitCount(object):
55
def __init__(self, n):
6+
self.__l = 0
67
self.__n = n
78
self.__count = [0]*n
8-
self.__l = 0
99

1010
def __iadd__(self, num):
1111
self.__l += 1

0 commit comments

Comments
 (0)