Moved problems till 56 to Python.

This commit is contained in:
2019-07-17 21:29:59 -04:00
parent 301033d17d
commit c624e6ac52
23 changed files with 417 additions and 23 deletions

View File

@@ -1,8 +1,8 @@
def euler_048():
return 0
return int(str(sum([i**i for i in range(1, 1001)]))[-10:])
if __name__ == "__main__":
print("e048.py: " + str(euler_048()))
assert(euler_048() == 0)
assert(euler_048() == 9110846700)