Skip to content

Commit dde1fa3

Browse files
applied suggested changes
1 parent 071639b commit dde1fa3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bit_manipulation/index_of_rightmost_set_bit.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def get_index_of_rightmost_set_bit(number: int) -> int:
3333
if __name__ == "__main__":
3434
"""
3535
Finding the index of rightmost set bit has some very peculiar use-cases,
36-
especially in finding missing or/and repeating numbers in a list of positive integers.
36+
especially in finding missing or/and repeating numbers in a list of
37+
positive integers.
3738
"""
3839
import doctest
3940

0 commit comments

Comments
 (0)