My program needs to multiply two custom BigInts objects I've constructed that store their values in arrays. This is how the method starts and I know the basic algorithm but I am unsure how to convert it into code.
public BigInt times(BigInt other) { //multiply two BigInts
BigInt result = new BigInt();
Comments
Leave a comment