Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
trying solution in Clear category for Index Power by ale1ster
def index_power(ra, n):
try:
return ra[n] ** n
except IndexError:
return -1
Sept. 3, 2014
Comments: