Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_index_power solution in Uncategorized category for Index Power by Jon_Red
def index_power(a:list,n:int)->int:
''' Find Nth power of the element with index N. '''
return a[n]**n if n
April 23, 2020