069. Sqrt(x)
Last updated
Last updated
Implement int sqrt(int x)
.
Compute and return the square root of x, where x is guaranteed to be a non-negative integer.
Since the return type is an integer, the decimal digits are truncated and only the integer part of the result is returned.
Example 1:
Example 2:
將上限定位數字本身,下限定為1
開始十分逼近法
除以二時取整數部分(因題目準確度只要到整數位)