Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Super Root by David_Jones
def super_root(number):
min_x, max_x = 1, 10
x = (max_x + min_x) / 2
while abs(x ** x - number) >= 0.001:
if x ** x > number:
max_x = x
else:
min_x = x
x = (max_x + min_x) / 2
return x
May 20, 2019