leetcode 69. Sqrt(x)

来源:互联网 发布:剑雨逍遥手游进阶数据 编辑:程序博客网 时间:2024/06/16 23:06

public int mySqrt(int x) {
return (int)Math.sqrt(x);
}
A了就不想想了

0 0