| Hosted by CoCalc | Download
1
def isqrt(n):
2
return int(floor(sqrt(n)))
3
4