Advent-of-Code/2015/day 4/P1/AdventCoins.py

7 lines
162 B
Python
Raw Normal View History

2019-12-01 17:44:00 +01:00
import hashlib
key = open("input.txt").read().replace("\n", "")
num=0
while hashlib.md5(f"{key}{num}".encode()).hexdigest()[:5] != "00000":
num+=1
print(num)