프로그래머스 리뷰 Math.ceil()

lovely·2022년 11월 25일
0
post-thumbnail
post-custom-banner

프로그래머스 연습문제
https://school.programmers.co.kr/learn/courses/30/lessons/120814

알고있는 내용은 충분히 활용하자!

function solution(n) {
    const count = 0
    for(let i=0; i<=n; i++){
        if(n <= 7*i) return count + i
     }
    return count
}

Math.ceil을 왜 떠올리지 못했을까?
간단하게 구현할 수 있는 방법을 항상 생각하자!

function solution(n){
    return Math.ceil(n/7)
   }

Math.ceil()
주어진 숫자보다 크거나 같은 숫자 중 가장 작은 숫자를 integer 로 반환합니다.(올림)
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil

Math.floor() 소숫값 버리기
Math.round() 반올림

프로그래머스 연습문제 2
https://school.programmers.co.kr/learn/courses/30/lessons/120816

function solution(slice, n) {
    return Math.ceil(n/slice)
}
profile
the best FE (will be..)
post-custom-banner

0개의 댓글