[프로그래머스] 정수 제곱근 판별

최유나·2024년 6월 14일
0

프로그래머스

목록 보기
19/53

✨ 정수 제곱근 판별

나의 풀이

Math.sqrt() : 숫자의 제곱근을 반환
Math.pow() : 밑의 거듭제곱 값을 반환

function solution(n) {
    let answer = 0;
    let sqrt = Math.sqrt(n); //제곱식 구하기
    
    if(sqrt % 1 === 0){ answer += Math.pow(sqrt+1,2); } //제곱근일 경우
    else{ answer = -1; } //제곱근이 아닐 경우
    
    return answer;
}

console.log("결과 : " + solution(121));
console.log("결과 : " + solution(3));

(출처 : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/pow)

다른사람의 풀이

삼항연산자를 통한 함수 간소화

function solution(n) {
    return Math.sqrt(n) % 1 === 0 ? Math.pow(Math.sqrt(n)+1,2) : -1;
}

0개의 댓글

관련 채용 정보