Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
optimize solution in Uncategorized category for Super Root by gyahun_dash
from scipy.optimize import bisect
def super_root(num):
return bisect(lambda x: x ** x - num, 1, 10, xtol=1e-15)
Jan. 2, 2017
Comments: