정수 제곱근 판별
def solution(n): sqrt = n**0.5 return (sqrt+1)**2 if int(sqrt) == sqrt else -1
이전 포스트 정수 내림차순으로 배치하기
다음 포스트 제일 작은 수 제거하기