Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
+ - increment solution in Clear category for Super Root by Olpag
def super_root(number):
gap, x, inc = 0.001, 10, 10
while not (number - gap < x**x < number + gap):
inc /= 2
x = x+inc if x**x < number else x-inc
return x
Sept. 12, 2019