Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for Super Root by coells
def super_root(n):
x = 10
while abs(x**x - n) >= 0.001:
x += n ** (x ** -1)
x /= 2
return x
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
def check_result(function, number):
result = function(number)
if not isinstance(result, (int, float)):
print("The result should be a float or an integer.")
return False
p = result ** result
if number - 0.001 < p < number + 0.001:
return True
return False
assert check_result(super_root, 4), "Square"
assert check_result(super_root, 9), "Cube"
assert check_result(super_root, 81), "Eighty one"
July 3, 2014
Comments: