[프로그래머스] 몫구하기

리빗·2023년 10월 19일
0
post-custom-banner

📌 내 풀이

1. parseInt를 활용해서 형변환하기

function solution(num1, num2) {
    var answer = 0;
    answer = parseInt(num1 / num2);
    return answer;
}

📌 다른 풀이

1. Math.floor(내림) 활용하기

const solution = (num1, num2) => Math.floor(num1 / num2)

2. 틸트 연산자를 활용한 풀이

  • 비트단위 연산자를 사용하면 소숫점을 버리고 계산한다.
  • ~~ 연산자는 Math.floor()와 같은 의미이다.
const solution = (num1, num2) => ~~(num1 / num2)

참고자료

profile
어제보다 나은 오늘을 위해
post-custom-banner

0개의 댓글