[leetcode]69

Posted tailiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode]69相关的知识,希望对你有一定的参考价值。

这道题,我先测试了下c++标准数学库,嗯,did it work!!!
而且效率还可以,不像pow的那道题,死慢


class Solution {
public:
    int mySqrt(int x) {
        return sqrt(x);
    }
};
Runtime: 4 ms, faster than 75.96% of C++ online submissions for Sqrt(x).
Memory Usage: 8.2 MB, less than 98.25% of C++ online submissions for Sqrt(x).

以上是关于[leetcode]69的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode第69场双周赛

LeetCode69 Sqrt(x)

3. LeetCode 69. x的平方根

Leetcode69. x 的平方根(二分)

leetcode二分 | 牛顿迭代法69_Sqrt(x)

leetcode69 X的平方根的几种解法