First solution in Clear category for Index Power by bukebuer
def index_power(array, n): return array[n]**n if len(array)>n else -1
Sept. 3, 2014
Comments: