Performing arithmetic operations on BigInteger/BigDecimal tends to slow down drastically as the value increases
The alternative to using BigInteger/BigDecimal arithmetic comes down to using string type data with self implemented methods for each arithmetic operation !
Will it be faster compared to BigInteger/BigDecimal arithmetic or is it slower ??
Also it'll be helpful if any other alternative is shared
(p.s this is in context with JAVA)