[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-10-29 10:33:42 +00:00
parent a616dc90ab
commit 656c6b512e

View File

@ -10,6 +10,8 @@ In this implementation, I have used a very simple construct without
the use of qiskit or cirq to help understand how Shor algorithm's
idea actually works.
"""
class Shor:
def period_find(self, num: int, number: int) -> int:
"""
@ -58,7 +60,3 @@ class Shor:
shor = Shor()
print(shor.shor_algorithm(15))