Simplify code by dropping support for legacy Python (#1143)

* Simplify code by dropping support for legacy Python

* sort() --> sorted()
This commit is contained in:
Christian Clauss
2019-08-19 15:37:49 +02:00
committed by GitHub
parent 32aa7ff081
commit 47a9ea2b0b
145 changed files with 367 additions and 976 deletions

View File

@ -7,11 +7,6 @@ The series, 11 + 22 + 33 + ... + 1010 = 10405071317.
Find the last ten digits of the series, 11 + 22 + 33 + ... + 10001000.
"""
try:
xrange
except NameError:
xrange = range
def solution():
"""Returns the last 10 digits of the series, 11 + 22 + 33 + ... + 10001000.
@ -20,7 +15,7 @@ def solution():
'9110846700'
"""
total = 0
for i in xrange(1, 1001):
for i in range(1, 1001):
total += i ** i
return str(total)[-10:]