码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode]69

时间:2019-10-22 10:35:58      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:ssi   mys   memory   标准   leetcode   ons   ++   pow   mem   

这道题,我先测试了下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

标签:ssi   mys   memory   标准   leetcode   ons   ++   pow   mem   

原文地址:https://www.cnblogs.com/tailiang/p/11718019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!