Competitive_Coding icon indicating copy to clipboard operation
Competitive_Coding copied to clipboard

Integer Factorization (15 digits)

Open raunak96 opened this issue 3 years ago • 0 comments

Given some integers represented by variable 'n', factor them into product of prime numbers. Eg: If n = 2432902008176640000 , Answer is: 2^18 3^8 5^4 7^2 11^1 13^1 17^1 19^1

raunak96 avatar Oct 14 '21 18:10 raunak96