Solve problem 87

This commit is contained in:
2021-04-09 23:44:28 -04:00
parent 9d4a08297e
commit b0cccc97ab
3 changed files with 41 additions and 2 deletions

9
python/e086.py Normal file
View File

@@ -0,0 +1,9 @@
def euler_086():
return 0
if __name__ == "__main__":
solution = euler_086()
print("e086.py: " + str(solution))
assert(solution == 0)