Initial commit

This commit is contained in:
Kevin Keogh
2018-07-02 15:45:49 -04:00
parent 60b3954a3b
commit fd817f8811
28 changed files with 809 additions and 0 deletions

9
problem-29.py Normal file
View File

@@ -0,0 +1,9 @@
results = []
if __name__ == '__main__':
for a in range(2, 101):
for b in range(2, 101):
results.append(a**b)
print(len(set(results)))