I am working with large numbers in Java. I don't know if I should parse
String
to BigInteger
once, and calculate mod
of that number, or if I should better divide that String
into segments and parse
those segments to int
and calculate mod
like that.
I am striving for best performance. Which is the better way?