单纯用了python求平方根的公式
#
#
# @param x int整型
# @return int整型
#
class Solution:
def mysqrt(self , x ):
# write code here
return int(x**0.5)
单纯用了python求平方根的公式
#
#
# @param x int整型
# @return int整型
#
class Solution:
def mysqrt(self , x ):
# write code here
return int(x**0.5)