This implements a factoring algorithm using random trial division and Wilson's theorem for primality testing.
Clone the git repo and then run
python setup.py install
>>> from bogofactor import bogofactor
>>> bogofactor(16449767)
[4093, 4019]
This implements a factoring algorithm using random trial division and Wilson's theorem for primality testing.
Python