HTMLify

is_perfect_square.py
Views: 116 | Author: abh
def is_perfect_square(n):
    sqrt = int(n ** 0.5)
    return sqrt * sqrt == n

Comments