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