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

6 lines
162 B
Python

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)