code/quantum_algorithms/shors_algorithm/README.md
Shor’s algorithm was invented by Peter Shor for integer factorization in 1994. It finds the prime factors of an integer N. Quantum Fourier Transform is the basis of the algorithm which finds the period of the function which gives the value based on the product of the prime factors.
Shor’s algorithm executes in polynomial time of O(log N) on a Quantum Computer and O((log N)3) on Classical Computers.
P-1. Implement Shor’s algorithm to prime factorise an integer N.
Implementation:- P1_shor_primefactorization.py
More To Be Added