This commit is contained in:
Roman Hergenreder
2018-12-13 13:54:10 +01:00
parent 73b50a2727
commit 9236891cf1
2 changed files with 118 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ a = y * c
a += abs(a // p) * p
solution = hex(a).replace("-", "")[2:]
while len(solution) != 2*29:
while True:
a += p
solution = hex(a).replace("-", "")[2:]
if not test_solution(a):