day4: part 1 and 2 with python
This commit is contained in:
parent
e8ca549ac5
commit
45277d41f5
|
@ -0,0 +1,13 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import hashlib
|
||||||
|
|
||||||
|
key = "yzbqklnj"
|
||||||
|
|
||||||
|
i = 0
|
||||||
|
while True:
|
||||||
|
result = hashlib.md5(f'{key}{i}'.encode())
|
||||||
|
if result.hexdigest().startswith("0"*6):
|
||||||
|
print(i)
|
||||||
|
break
|
||||||
|
i += 1
|
Loading…
Reference in New Issue