Tagged Questions

6
votes
5answers
5k views

Two's Complement in Python

Is there a built in function in python which will convert a binary string, for example '111111111111', to the two's complement integer -1?
0
votes
1answer
73 views

resizing a byte[] two's compliment repressented integer

Ok, I have a two's compliment representation of a number, in a byte array, and I want to expand it to use a larger byte array. (You can get two's compliment byte[] out of BigIntegers) So my new byte ...