conversions.int_to_negative_binary_base

Functions

decimal_to_negative_binary(→ int)

a conversion algorithm from decimal

Module Contents

conversions.int_to_negative_binary_base.decimal_to_negative_binary(number: int) int

a conversion algorithm from decimal to negative binary base

https://en.wikipedia.org/wiki/Negative_base#:~:text=Binary-,Negabinary,-Ternary

>>> decimal_to_negative_binary(10)
11110
>>> decimal_to_negative_binary(-10)
1010
>>> decimal_to_negative_binary(-30)
100110
>>> decimal_to_negative_binary(30)
1100010