본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 정수 제곱근 판별

by 현장 2021. 12. 19.

-코드

from math import sqrt
def solution(n):
    if sqrt(n) == int(sqrt(n)):
        return int((sqrt(n) + 1) ** 2)
    else:
        return -1