conversions.negative_binary_base_to_int¶
Functions¶
|
a conversion algorithm from negative binary |
Module Contents¶
- conversions.negative_binary_base_to_int.negative_binary_to_int(negative_binary: int) int¶
a conversion algorithm from negative binary base to decimal
https://en.wikipedia.org/wiki/Negative_base#:~:text=Binary-,Negabinary,-Ternary
>>> negative_binary_to_int(101110) -38 >>> negative_binary_to_int(10111110) -150 >>> negative_binary_to_int(100) 4 >>> negative_binary_to_int(110) 2