LeetCode【69】 Sqrt(x)
程序员文章站
2022-03-19 11:57:20
...
public class Solution {
public int mySqrt(int x) {
return (int)Math.sqrt(x);
}
}
这个题目很水,只要调用java的函数即可,但是要注意和函数返回类型相同,对sqrt(x)进行类型转换。