제곱근인지 판별하기

이주희·2022년 4월 10일
0

Algorithm

목록 보기
10/79

거듭 제곱 연산자

  1. **
    2 ** 6 : 왼쪽의 숫자를 오른쪽의 숫자만큼 제곱
  2. Math.pow(,)
    Math.pow(2,3) : 왼쪽의 숫자를 오른쪽의 숫자만큼 제곱

제곱근 구하기

Math.sqrt(num)

정수 판별

Number.isInteger(1.1) //false


임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다.
n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함수를 완성하세요.

n / return
121 / 144
3 / -1

function solution(n) {
  let x = Math.sqrt(n);
  return x === Math.trunc(x) ? (x + 1) * (x + 1) : -1;
}


// for & if
function solution(n) {
  let answer = -1;
  for (let i = 1; i * i <= n; i++) {
    if (i * i === n) {
      answer = i + 1;
      return answer * answer;
    }
  }
  return answer;
}


// while
/* 거듭 제곱 연산자 */
function solution(n) {
  let answer = 1; // 최초식
  while (answer ** 2 < n) {
    answer++;
  }
  return answer ** 2 === n ? (answer + 1) ** 2 : -1;
}


// Math.sqrt(num)
// Number.isInteger(1.1)
function solution(n) {
  let sqrt = Math.sqrt(n);
  if (Number.isInteger(sqrt)) return (sqrt + 1) ** 2;
  return -1;
}


function solution(n) {
    return Number.isInteger(Math.sqrt(n)) ? (Math.sqrt(n)+1) ** 2 : -1;
}
profile
🍓e-juhee.tistory.com 👈🏻 이사중

0개의 댓글