mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-02-15 05:48:08 +00:00
Fix tabs instead of spaces in comments
Fixing tabs instead of spaces in comments
This commit is contained in:
parent
0ef3e6b302
commit
29b6e8ff7d
|
@ -20,7 +20,8 @@ All parameters must be must be int >= 0, referred to as a 'bit integer'.
|
||||||
For gets, sets and removes, it is the position of the bit itself.
|
For gets, sets and removes, it is the position of the bit itself.
|
||||||
|
|
||||||
value:int
|
value:int
|
||||||
Either [0,1] for single bit, or bit mask, bit_length(value) <= bitlen.
|
Either [0,1] for single bit, or int value for multibit,
|
||||||
|
bit_length(value) <= bitlen.
|
||||||
|
|
||||||
bitlen:int
|
bitlen:int
|
||||||
The effective mask length, spec. leading zeros
|
The effective mask length, spec. leading zeros
|
||||||
|
@ -230,6 +231,7 @@ def multibit_remove(bint: int, index: int, bit_len: int) -> int:
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
||||||
import doctest
|
import doctest
|
||||||
|
|
||||||
doctest.testmod()
|
doctest.testmod()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user