Initial commit
This commit is contained in:
9
problem-29.py
Normal file
9
problem-29.py
Normal 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)))
|
||||
|
||||
Reference in New Issue
Block a user