자릿수 더하기
https://school.programmers.co.kr/learn/courses/30/lessons/12934
📔 문제 설명
임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다.
n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함수를 완성하세요.
💡 입출력 예
n | result |
---|---|
121 | 144 |
3 | -1 |
💻내가 작성한 코드
- sqrt로 제곱근 구하기
- isInteger로 정수 여부 판별하기
1
2
3
4
function solution(n) {
const x = Math.sqrt(n);
return Number.isInteger(x) ? Math.pow(x + 1, 2) : -1;
}
This post is licensed under CC BY 4.0 by the author.