Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: W Lambert Function solution in Creative category for Super Root by Stensen
from math import exp as e, log as ln
from scipy.special import lambertw as W
super_root = lambda a: e(W(ln(a)))
Nov. 3, 2020
Comments: