题解 | #求平方根#
求平方根
http://www.nowcoder.com/practice/09fbfb16140b40499951f55113f2166c
单纯用了python求平方根的公式
#
#
# @param x int整型
# @return int整型
#
class Solution:
def sqrt(self , x ):
# write code here
return int(x**0.5)
求平方根
http://www.nowcoder.com/practice/09fbfb16140b40499951f55113f2166c
单纯用了python求平方根的公式
#
#
# @param x int整型
# @return int整型
#
class Solution:
def sqrt(self , x ):
# write code here
return int(x**0.5)
相关推荐