Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Super Root by Xeons
"use strict";
function superRoot(n) {
let x = 10
while(Math.abs(x ** x - n) >= 1e-3){
x += n ** (x ** -1)
x /= 2
}
return x
}
Dec. 18, 2018