[프로그래머스/js] 피자 나눠 먹기(1)

2023. 3. 26. 13:25코딩 테스트(Coding Test)/프로그래머스

내 풀이

function solution(n) {
    return n%7===0 ? Math.floor(n/7) : Math.floor(n/7)+1; 
}

 

 

 

삼항 연산자

 

Math.floor()

: 소수점 이하를 버림한다