HTMLify
is_perfect_square.py
Views: 463 | Author: abh
1 2 3 | def is_perfect_square(n): sqrt = int(n ** 0.5) return sqrt * sqrt == n |
1 2 3 | def is_perfect_square(n): sqrt = int(n ** 0.5) return sqrt * sqrt == n |