0069 - TommyFu/leetcode-javascript GitHub Wiki

Sqrt(x)

https://leetcode.com/problems/sqrtx/

牛顿迭代法。。。

先随便猜一个数,我就猜了三分之一,然后套用公式。

candidate = (candidate + x / candidate) / 2;

题目要求返回int型,精度不重要。

⚠️ **GitHub.com Fallback** ⚠️