Solve problem 70 in Python.

This commit is contained in:
2019-07-21 14:13:28 -04:00
parent 66e4593c4b
commit c47970642a
11 changed files with 168 additions and 12 deletions

8
python/e071.py Normal file
View File

@@ -0,0 +1,8 @@
def euler_071():
return 0
if __name__ == "__main__":
print("e071.py: " + str(euler_071()))
assert(euler_071() == 0)