Moved solutions till 35 to Python.

This commit is contained in:
2019-07-16 12:51:07 -04:00
parent f76b36c8d3
commit d94fc90600
13 changed files with 262 additions and 66 deletions

7
python/e029.py Normal file
View File

@@ -0,0 +1,7 @@
def euler_029():
return len(set([a**b for a in range(2, 101) for b in range(2, 101)]))
if __name__ == "__main__":
print("e029.py: {}".format(euler_029()))
assert(euler_029() == 9183)