AvgStudent
Full Member
- Joined
- Jan 1, 2022
- Messages
- 256
I'm starting a side coding project. The objective of the project is to factorize large integers. My experience has always been with relatively small integers and done by hand. For those numbers, I would divide them by the smallest prime number that goes into it evenly with no remainder. Continue this process with each number I get until I reach 1.
However, I think this process is very inefficient with larger integers like 13197. I'm looking for a more efficient way to do prime factorization. Thanks
However, I think this process is very inefficient with larger integers like 13197. I'm looking for a more efficient way to do prime factorization. Thanks