Skip to content

Commit 1e6ba2b

Browse files
Update count_number_of_one_bits.py
Reduced line size
1 parent 8c2fe2e commit 1e6ba2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bit_manipulation/count_number_of_one_bits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_set_bits_count_using_lookup_table(number: int) -> int:
6464
"""
6565
Count the number of set bits in a 32-bit integer using a precomputed lookup table.
6666
67-
Note: I see similar approach in GeeksforGeeks, but the implementation is little different.
67+
I see similar approach in GeeksforGeeks, but the implementation is different.
6868
Link to Code:
6969
https://www.geeksforgeeks.org/dsa/count-set-bits-integer-using-lookup-table/
7070

0 commit comments

Comments
 (0)