I'm trying to use the GCD
library function BigINT.js . But I do not know how, I try to use raw numbers, but it returns 0
In the description says
// bigInt GCD(x,y)
// return greatest common divisor of bigInts x and y (each with same number of elements).
And I try to use it like this:
GCD(1124,2048);
But it turns 0. How to use it correctly?