Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Super Root by _Chico_
def super_root(n):
x = 10
while abs(x**x - n) >= 0.001:
x += n ** (x ** -1)
x /= 2
return x
May 18, 2021