Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Assignment solution in Creative category for Super Root by veky
def super_root(y):
I, x = [1, 10], 1
while abs(x**x - y) > 1e-3: x = I[x**x > y] = sum(I)/2
return x
July 2, 2014
Comments: