First solution in Clear category for Index Power by Wojtas1411
def index_power(array, n): if len(array) Oct. 21, 2016 Comments: davejlin on Nov. 25, 2016, 9:22 p.m. <p>you don't need the extra n==0 condition, since it is properly calculated in your general case: array[n]**n</p>
Oct. 21, 2016
Comments: