본문 바로가기

Coding Test/프로그래머스

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

class Solution {
    public int solution(int n) {
        return n%7 > 0 ? n/7+1 : n/7;
    }
}

class Solution {
    public int solution(int n) {
        return (n + 6) / 7;
    }
}