使用python完成函数` perfectSquares `,它接受两个非负整数` x `和` y `,并返回` [x, y] `中的完全平方的个数。
时间: 2024-01-08 09:19:05 浏览: 52
```python
import math
class Solution(object):
def perfectSquares(self, x, y):
"""
:type x: int
:type y: int
:rtype: int
"""
count = 0
for i in range(x, y+1):
if math.sqrt(i) == int(math.sqrt(i)):
count += 1
return count
```
--相关问题--:
1. 什么是完全平方数?
2. 如何判断一个数是否为完全
阅读全文