We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d32426c commit bda5bf6Copy full SHA for bda5bf6
calculation.py
@@ -0,0 +1,9 @@
1
+from hashlib import sha256
2
+
3
+x = 5
4
+y = 0 # We don't know what y should be yet
5
6
+while sha256(f'{x*y}'.encode()).hexdigest()[-1] != "0":
7
+ y += 1
8
9
+print(f'The solution is y = {y}')
0 commit comments