2017年5月2日

LeetCode : Sqrt(x)

摘要: Implement int sqrt(int x).Compute and return the square root of x.class Solution {public: int mySqrt(int x) { long r = x; wh... 阅读全文

posted @ 2017-05-02 23:15 gechen 阅读(68) 评论(0) 推荐(0) 编辑

导航