본문 바로가기

알고리즘 문제

Programmers Level 1 정수제곱근판별하기

import math

def nextSqure(n):

    # 함수를 완성하세요

    x = math.sqrt(n)

    y = int(x)

    if x == y:

        return (y+1)**2

    return 'no'


# 아래는 테스트로 출력해 보기 위한 코드입니다.

print("결과 : {}".format(nextSqure(121)))