Implement int sqrt(int x)
.
Compute and return the square root of x.
x is guaranteed to be a non-negative integer.
题目分析:计算x的开平方,取整。
示例:4--->2 ; 8--->2
方法一:python中自带的一个数学库math,里面就包括计算开平方的方法sqrt()。用法:math.sqrt()
- 代码:
2.这道题是我做的最简单的一道,没什么需要多说的。看程序吧。import math class Solution: def mySqrt(self, x): """ :type x: int :rtype: int """ y=math.sqrt(x) return int(y)