Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)?
I can create algorithms to do this job, but i think it is poorly coded, and takes too long to execute a result for a large numbers.
|
Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)? I can create algorithms to do this job, but i think it is poorly coded, and takes too long to execute a result for a large numbers.
| |||||||||
feedback
|
This will return all of the factors, very quickly, of a number Why square root as the upper limit?
the The The Edit: | |||||||||||||||
feedback
|
|
An alternative approach to agf's answer:
| |||||||||||||
feedback
|
|
agf's answer is really quite cool. I wanted to see if I could rewrite it to avoid using
I also tried a version that uses tricky generator functions:
I timed it by computing:
I ran it once to let Python compile it, then ran it under the time(1) command three times and kept the best time.
Note that the itertools version is building a tuple and passing it to flatten_iter(). If I change the code to build a list instead, it slows down slightly:
I believe that the tricky generator functions version is the fastest possible in Python. But it's not really much faster than the reduce version, roughly 4% faster based on my measurements. | ||||
|
feedback
|