69. x 的平方根 leetcode
2018-11-02 本文已影响2人
出来遛狗了
class Solution {
func mySqrt(_ x: Int) -> Int {
if x == 0{
return 0;
}
if x == 1{
return 1;
}
for i in 2...x{
if i * i > x{
return i - 1;
}
}
return x
}
}