LeetCode | 69. Sqrt(x)

Implement int sqrt(int x).web Compute and return the square root of x.svg 很簡單的題:spa class Solution { public: int mySqrt(int x) { return int(sqrt(x)); } };
相關文章
相關標籤/搜索