Hey guys, just thought Id share this with you.
It's a number factorizer that is designed to handle LARGE numbers (in the hundreds of thousands) and, well, factorize them.
It's output is user-friendly, no duplicate factors, and they're in neat little pairs. Here's an example:
8 factors:
[[1, 1000], [2, 500], [4, 250], [5, 200], [8, 125], [10, 100], [20, 50], [25, 40]]
That was for 1000 and took 8.3 seconds.
Then again, the iPad 2 I'm using has way more stuff running in the background than it should.
Here's the code, you'll need both in the same directory:
https://gist.github.com/44c261782272747fbf22
https://gist.github.com/9b6ea6e70c3b4ebbf861
I'm new to the whole github thing so if you want to edit you may have to help me allow you do that.