跳至主要內容

069_x的平方根

T4mako算法二分查找数学小于 1 分钟

069_x的平方根

简单
class Solution {
    public int mySqrt(int x) {
        return (int)Math.sqrt(x);
    }
}
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.5